Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkStringBuilder sbResponseBody;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
// Adds the "Authorization: Bearer {{token}}" header.
CkHttp_putAuthToken(http,"{{token}}");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
sbResponseBody = CkStringBuilder_Create();
success = CkHttp_QuickGetSb(http,"https://domain.com/exchange/api/v1/organizations/{{organization_id}}/categories",sbResponseBody);
if (success == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
return;
}
printf("Response status code = %d\n",CkHttp_getLastStatus(http));
printf("%s\n",CkStringBuilder_getAsString(sbResponseBody));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
}
Curl Command
curl -X GET
-H "Authorization: Bearer {{token}}"
-H "Content-Type: application/json"
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/categories
Postman Collection Item JSON
{
"name": "Get all categories",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/categories",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v1",
"organizations",
"{{organization_id}}",
"categories"
]
},
"description": "Generated from a curl request: \ncurl -X POST -H \\\"Authorization: Bearer d4677804-dab3-445a-9792-54de530ef345\\\" -H \\\"Content-Type: application/json\\\" -d '{\n \\\"displayName\\\": “Custom_Field_Test”,\n \\\"tagKey\\\": “Tag_Key_Test”,\n \\\"dataType\\\": \\\"text\\\",\n \\\"assetTypeRestrictions\\\": []\n}\n' \\\"https://anypoint.mulesoft.com/exchange/api/v1/organizations/59995d29-ebe2-43d9-a52b-766683fd41a7/fields\\\""
},
"response": [
]
}