Chilkat Online Tools

PowerBuilder / Commercetools / Query states

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
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.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}}/states")
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}}/states

Postman Collection Item JSON

{
  "name": "Query states",
  "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(\"state-id\", data.results[0].id); ",
          "    pm.environment.set(\"state-version\", data.results[0].version);",
          "}",
          "if(data.results && data.results[0] && data.results[0].key){",
          "    pm.environment.set(\"state-key\", data.results[0].key); ",
          "}",
          "if(data.version){",
          "    pm.environment.set(\"state-version\", data.version);",
          "}",
          "if(data.id){",
          "    pm.environment.set(\"state-id\", data.id); ",
          "}",
          "if(data.key){",
          "    pm.environment.set(\"state-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}}/states",
      "host": [
        "{{host}}"
      ],
      "path": [
        "{{project-key}}",
        "states"
      ],
      "query": [
        {
          "key": "expand",
          "value": "",
          "equals": true,
          "disabled": true
        },
        {
          "key": "sort",
          "value": "",
          "equals": true,
          "disabled": true
        },
        {
          "key": "limit",
          "value": "",
          "equals": true,
          "disabled": true
        },
        {
          "key": "offset",
          "value": "",
          "equals": true,
          "disabled": true
        },
        {
          "key": "withTotal",
          "value": "",
          "equals": true,
          "disabled": true
        },
        {
          "key": "where",
          "value": "",
          "equals": true,
          "disabled": true
        },
        {
          "key": "/^var[.][a-zA-Z0-9]+$/",
          "value": "",
          "equals": true,
          "disabled": true
        }
      ]
    },
    "description": "null",
    "body": {
      "mode": "raw",
      "raw": ""
    }
  },
  "response": [
  ]
}