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.
// {
// "name": "v3",
// "instances": [
// {
// "environmentId": "{{environment_id}}",
// "groupInstanceLabel": "technet",
// "apiInstances": [
// {}
// ]
// }
// ]
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"name",L"v3");
CkJsonObjectW_UpdateString(json,L"instances[0].environmentId",L"{{environment_id}}");
CkJsonObjectW_UpdateString(json,L"instances[0].groupInstanceLabel",L"technet");
// Adds the "Authorization: Bearer {{token}}" header.
CkHttpW_putAuthToken(http,L"{{token}}");
resp = CkHttpW_PostJson3(http,L"https://domain.com/apimanager/api/v1/organizations/{{organization_id}}/groups/{{apigroup_id}}/versions",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 '{
"name":"v3",
"instances":[
{
"environmentId":"{{environment_id}}",
"groupInstanceLabel":"technet",
"apiInstances":[
{{api_Id}}
]
}
]
}'
https://domain.com/apimanager/api/v1/organizations/{{organization_id}}/groups/{{apigroup_id}}/versions
Postman Collection Item JSON
{
"name": "Create a new api group version",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"name\":\"v3\",\r\n \"instances\":[\r\n {\r\n \"environmentId\":\"{{environment_id}}\",\r\n \"groupInstanceLabel\":\"technet\",\r\n \"apiInstances\":[\r\n {{api_Id}}\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/apimanager/api/v1/organizations/{{organization_id}}/groups/{{apigroup_id}}/versions",
"host": [
"{{url}}"
],
"path": [
"apimanager",
"api",
"v1",
"organizations",
"{{organization_id}}",
"groups",
"{{apigroup_id}}",
"versions"
]
}
},
"response": [
]
}