PowerBuilder / Commercetools / Get shopping list by id in store
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Resp = loo_Http.QuickRequest("get","https://domain.com/{{project-key}}/in-store/key={{store-key}}/shopping-lists/{{shopping-list-id}}")
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
Curl Command
curl -X get
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
https://domain.com/{{project-key}}/in-store/key={{store-key}}/shopping-lists/{{shopping-list-id}}
Postman Collection Item JSON
{
"name": "Get shopping list by id in store",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"tests[\"Status code \" + responseCode.code] = responseCode.code === 200 || responseCode.code === 201;",
"var data = JSON.parse(responseBody);",
"if(data.results && data.results[0] && data.results[0].id && data.results[0].version){",
" pm.environment.set(\"shopping-list-id\", data.results[0].id); ",
" pm.environment.set(\"shopping-list-version\", data.results[0].version);",
"}",
"if(data.results && data.results[0] && data.results[0].key){",
" pm.environment.set(\"shopping-list-key\", data.results[0].key); ",
"}",
"if(data.version){",
" pm.environment.set(\"shopping-list-version\", data.version);",
"}",
"if(data.id){",
" pm.environment.set(\"shopping-list-id\", data.id); ",
"}",
"if(data.key){",
" pm.environment.set(\"shopping-list-key\", data.key);",
"}",
""
]
}
}
],
"request": {
"auth": {
"type": "oauth2",
"oauth2": {
"accessToken": "{{ctp_access_token}}",
"addTokenTo": "header",
"tokenType": "Bearer"
}
},
"method": "get",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{host}}/{{project-key}}/in-store/key={{store-key}}/shopping-lists/{{shopping-list-id}}",
"host": [
"{{host}}"
],
"path": [
"{{project-key}}",
"in-store",
"key={{store-key}}",
"shopping-lists",
"{{shopping-list-id}}"
],
"query": [
{
"key": "expand",
"value": "",
"equals": true,
"disabled": true
}
]
},
"description": "Gets a shopping list by ID.",
"body": {
"mode": "raw",
"raw": ""
}
},
"response": [
]
}