Chilkat Online Tools

unicodeCpp / Anypoint Platform APIs / Remove custom field [enum] from asset

Back to Collection Items

#include <CkHttpW.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;

    // Adds the "Authorization: Bearer {{token}}" header.
    http.put_AuthToken(L"{{token}}");

    CkHttpResponseW *resp = http.QuickRequest(L"DELETE",L"https://domain.com/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags/fields/subType");
    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 DELETE
	-H "Authorization: Bearer {{token}}"
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags/fields/subType

Postman Collection Item JSON

{
  "name": "Remove custom field [enum] from asset",
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags/fields/subType",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v1",
        "organizations",
        "{{organization_id}}",
        "assets",
        "{{organization_id}}",
        "{{app_Id}}",
        "1.0.1",
        "tags",
        "fields",
        "subType"
      ]
    }
  },
  "response": [
  ]
}