Chilkat Online Tools

unicodeCpp / EPC 2.0 - Partner Sandbox - 19.4 November [External] / [Partner] Update a Product

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>

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

    CkHttpW http;
    bool success;

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

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

    // {
    //   "entitlements": {
    //     "access": {
    //       "allow": [
    //         "urn:elli:encompass:{{encompass_instance_id}}"
    //       ],
    //       "deny": [
    //       ]
    //     }
    //   }
    // }

    CkJsonObjectW json;
    json.UpdateString(L"entitlements.access.allow[0]",L"urn:elli:encompass:{{encompass_instance_id}}");
    json.UpdateNewArray(L"entitlements.access.deny");

    // Adds the "Authorization: Bearer {{partner_token}}" header.
    http.put_AuthToken(L"{{partner_token}}");
    http.SetRequestHeader(L"Content-Type",L"application/merge-patch+json");

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);

    CkHttpResponseW *resp = http.PTextSb(L"PATCH",L"https://domain.com/",sbRequestBody,L"utf-8",L"application/merge-patch+json",false,false);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X PATCH
	-H "Authorization: Bearer {{partner_token}}"
	-H "Content-Type: application/merge-patch+json"
	-d '{
    "entitlements": {
        "access": {
            "allow": [
                "urn:elli:encompass:{{encompass_instance_id}}"
            ],
            "deny": []
        }
    }
}'
https://domain.com/

Postman Collection Item JSON

{
  "name": "[Partner] Update a Product",
  "_postman_id": "68a5c2d0-73d6-4976-967f-008cb3ea3361",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{partner_token}}",
        "type": "text"
      },
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/merge-patch+json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"entitlements\": {\n        \"access\": {\n            \"allow\": [\n                \"urn:elli:encompass:{{encompass_instance_id}}\"\n            ],\n            \"deny\": []\n        }\n    }\n}\n"
    },
    "url": "{{api_host}}/partner/v2/products/{{product_id}}"
  },
  "response": [
  ]
}