Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
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.
// {
// "dataType": "enum",
// "acceptedValues": [
// "OAS",
// "RAML"
// ],
// "displayName": "SubType",
// "tagKey": "subType"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"dataType",L"enum");
CkJsonObjectW_UpdateString(json,L"acceptedValues[0]",L"OAS");
CkJsonObjectW_UpdateString(json,L"acceptedValues[1]",L"RAML");
CkJsonObjectW_UpdateString(json,L"displayName",L"SubType");
CkJsonObjectW_UpdateString(json,L"tagKey",L"subType");
// Adds the "Authorization: Bearer {{token}}" header.
CkHttpW_putAuthToken(http,L"{{token}}");
resp = CkHttpW_PostJson3(http,L"https://domain.com/exchange/api/v2/organizations/{{organization_id}}/fields",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-H "Authorization: Bearer {{token}}"
-d '{
"dataType": "enum",
"acceptedValues": ["OAS","RAML"],
"displayName": "SubType",
"tagKey": "subType"
}'
https://domain.com/exchange/api/v2/organizations/{{organization_id}}/fields
Postman Collection Item JSON
{
"name": "Create a custom field [enum]",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"dataType\": \"enum\",\r\n\t\"acceptedValues\": [\"OAS\",\"RAML\"],\r\n\t\"displayName\": \"SubType\",\r\n\t\"tagKey\": \"subType\"\r\n }",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/exchange/api/v2/organizations/{{organization_id}}/fields",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v2",
"organizations",
"{{organization_id}}",
"fields"
]
}
},
"response": [
]
}