Chilkat Online Tools

C / Anypoint Platform APIs / Delete dependency to asset Copy

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonArray.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonArray jarr;
    HCkJsonObject jsonObj_1;
    HCkStringBuilder sbRequestBody;
    HCkHttpResponse resp;

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

    http = CkHttp_Create();

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

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

    // [
    //   {
    //     "groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
    //     "assetId": "banking-user",
    //     "version": "1.0.1"
    //   }
    // ]

    jarr = CkJsonArray_Create();

    CkJsonArray_AddObjectAt(jarr,-1);
    jsonObj_1 = CkJsonArray_ObjectAt(jarr,CkJsonArray_getSize(jarr) - 1);
    CkJsonObject_UpdateString(jsonObj_1,"groupId","bc6c7bb9-87c7-4220-833b-40509c780dd4");
    CkJsonObject_UpdateString(jsonObj_1,"assetId","banking-user");
    CkJsonObject_UpdateString(jsonObj_1,"version","1.0.1");
    CkJsonObject_Dispose(jsonObj_1);

    CkHttp_SetRequestHeader(http,"X-OWNER-ID","{{owner_id}}");
    CkHttp_SetRequestHeader(http,"X-ANYPNT-ENV-ID","{{environment-id}}");
    // Adds the "Authorization: Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17" header.
    CkHttp_putAuthToken(http,"96b384f7-a6d2-43f9-a14b-652f60048b17");
    CkHttp_SetRequestHeader(http,"Content-Type","application/json");
    CkHttp_SetRequestHeader(http,"X-ANYPNT-ORG-ID","{{org-id}}");

    sbRequestBody = CkStringBuilder_Create();
    CkJsonArray_EmitSb(jarr,sbRequestBody);

    resp = CkHttp_PTextSb(http,"DELETE","https://domain.com/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonArray_Dispose(jarr);
        CkStringBuilder_Dispose(sbRequestBody);
        return;
    }

    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttpResponse_Dispose(resp);


    CkHttp_Dispose(http);
    CkJsonArray_Dispose(jarr);
    CkStringBuilder_Dispose(sbRequestBody);

    }

Curl Command

curl -X DELETE
	-H "Authorization: Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17"
	-H "X-ANYPNT-ENV-ID: {{environment-id}}"
	-H "X-ANYPNT-ORG-ID: {{org-id}}"
	-H "Content-Type: application/json"
	-H "X-OWNER-ID: {{owner_id}}"
	-d '[
    {
        "groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
        "assetId": "banking-user",
        "version": "1.0.1"
    }
]'
https://domain.com/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies

Postman Collection Item JSON

{
  "name": "Delete dependency to asset Copy",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var jsonData = pm.response.json();",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17"
      },
      {
        "key": "X-ANYPNT-ENV-ID",
        "type": "text",
        "value": "{{environment-id}}"
      },
      {
        "key": "X-ANYPNT-ORG-ID",
        "type": "text",
        "value": "{{org-id}}"
      },
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "X-OWNER-ID",
        "value": "{{owner_id}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "[\n    {\n        \"groupId\": \"bc6c7bb9-87c7-4220-833b-40509c780dd4\",\n        \"assetId\": \"banking-user\",\n        \"version\": \"1.0.1\"\n    }\n]",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{url}}/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies",
      "host": [
        "{{url}}"
      ],
      "path": [
        "designcenter",
        "api-designer",
        "projects",
        "{{project_id}}",
        "branches",
        "{{branch_name}}",
        "exchange",
        "dependencies"
      ]
    }
  },
  "response": [
  ]
}