Chilkat Online Tools

phpAx / Commercetools / Create State

Back to Collection Items

<?php

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$http = new COM("Chilkat_9_5_0.Http");

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "key": "test-state",
//   "type": "ProductState",
//   "roles": [
//   ],
//   "initial": true
// }

$json = new COM("Chilkat_9_5_0.JsonObject");
$json->UpdateString('key','test-state');
$json->UpdateString('type','ProductState');
$json->UpdateNewArray('roles');
$json->UpdateBool('initial',1);

// Adds the "Authorization: Bearer <access_token>" header.
$http->AuthToken = '<access_token>';
$http->SetRequestHeader('Content-Type','application/json');

$sbRequestBody = new COM("Chilkat_9_5_0.StringBuilder");
$json->EmitSb($sbRequestBody);

// resp is a Chilkat_9_5_0.HttpResponse
$resp = $http->PTextSb('post','https://domain.com/{{project-key}}/states',$sbRequestBody,'utf-8','application/json',0,0);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";


?>

Curl Command

curl -X post
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
  "key" : "test-state",
  "type" : "ProductState",
  "roles" : [ ],
  "initial" : true
}'
https://domain.com/{{project-key}}/states

Postman Collection Item JSON

{
  "name": "Create State",
  "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": "post",
    "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
        }
      ]
    },
    "description": "null",
    "body": {
      "mode": "raw",
      "raw": "{\n  \"key\" : \"test-state\",\n  \"type\" : \"ProductState\",\n  \"roles\" : [ ],\n  \"initial\" : true\n}"
    }
  },
  "response": [
  ]
}