Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonArrayW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonArrayW jarr;
HCkJsonObjectW jsonObj_1;
HCkStringBuilderW sbRequestBody;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_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.
// [
// {
// "value": "postmancollection"
// },
// {
// "value": "anypointplatformapis"
// }
// ]
jarr = CkJsonArrayW_Create();
CkJsonArrayW_AddObjectAt(jarr,-1);
jsonObj_1 = CkJsonArrayW_ObjectAt(jarr,CkJsonArrayW_getSize(jarr) - 1);
CkJsonObjectW_UpdateString(jsonObj_1,L"value",L"postmancollection");
CkJsonObjectW_Dispose(jsonObj_1);
CkJsonArrayW_AddObjectAt(jarr,-1);
jsonObj_1 = CkJsonArrayW_ObjectAt(jarr,CkJsonArrayW_getSize(jarr) - 1);
CkJsonObjectW_UpdateString(jsonObj_1,L"value",L"anypointplatformapis");
CkJsonObjectW_Dispose(jsonObj_1);
// Adds the "Authorization: Bearer {{token}}" header.
CkHttpW_putAuthToken(http,L"{{token}}");
sbRequestBody = CkStringBuilderW_Create();
CkJsonArrayW_EmitSb(jarr,sbRequestBody);
resp = CkHttpW_PTextSb(http,L"PUT",L"https://domain.com/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags",sbRequestBody,L"utf-8",L"application/json",FALSE,FALSE);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonArrayW_Dispose(jarr);
CkStringBuilderW_Dispose(sbRequestBody);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonArrayW_Dispose(jarr);
CkStringBuilderW_Dispose(sbRequestBody);
}
Curl Command
curl -X PUT
-H "Authorization: Bearer {{token}}"
-d '[
{
"value":"postmancollection"
},
{
"value":"anypointplatformapis"
}
]'
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags
Postman Collection Item JSON
{
"name": "Add tags to single asset",
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n\t{\r\n\t\t\"value\":\"postmancollection\"\r\n\t},\r\n\t{\r\n\t\t\"value\":\"anypointplatformapis\"\r\n\t} \r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v1",
"organizations",
"{{organization_id}}",
"assets",
"{{organization_id}}",
"{{app_Id}}",
"1.0.1",
"tags"
]
}
},
"response": [
]
}