Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject json;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_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": "Devops Night Man Squad",
// "members": [
// "5df9d90aba2cb0c5a4f12d44"
// ]
// }
json = CkJsonObject_Create();
CkJsonObject_UpdateString(json,"name","Devops Night Man Squad");
CkJsonObject_UpdateString(json,"members[0]","5df9d90aba2cb0c5a4f12d44");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
resp = CkHttp_PostJson3(http,"https://api.squadcast.com/v3/squads","application/json",json);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"name":"Devops Night Man Squad",
"members":[
"5df9d90aba2cb0c5a4f12d44"
]
}'
https://api.squadcast.com/v3/squads
Postman Collection Item JSON
{
"name": "Create Squad",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{sq_pb_auth_header}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\":\"Devops Night Man Squad\",\n\t\"members\":[\n \"5df9d90aba2cb0c5a4f12d44\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/squads",
"host": [
"{{baseUrl}}"
],
"path": [
"squads"
]
},
"description": "This endpoint is used to create a new squad.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `squad-create` scope."
},
"response": [
{
"name": "201 Created",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\":\"Devops Night Man Squad\",\n\t\"members\":[\n \"5df9d90aba2cb0c5a4f12d44\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/squads",
"host": [
"{{baseUrl}}"
],
"path": [
"squads"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"data\": {\n \"id\": \"5ed4e5977cc8a1daa90d56eb\",\n \"name\": \"Devops Night Man Squad\",\n \"slug\": \"devops-night-man-squad\",\n \"members\": [\n \"5df9d90aba2cb0c5a4f12d44\"\n ],\n \"organization\": {\n \"id\": \"5ea962e35734157d01594951\",\n \"name\": \"Avengers\",\n \"slug\": \"avengers\"\n }\n }\n}"
},
{
"name": "400 Bad Request",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\":\"Devops Night Man Squad\",\n\t\"members\":[\n \"5df9d90aba2cb0c5a4f12d44\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/squads",
"host": [
"{{baseUrl}}"
],
"path": [
"squads"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 400,\n \"error_message\": \"<string>\"\n }\n}"
},
{
"name": "401 Unauthorized",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\":\"Devops Night Man Squad\",\n\t\"members\":[\n \"5df9d90aba2cb0c5a4f12d44\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/squads",
"host": [
"{{baseUrl}}"
],
"path": [
"squads"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 401,\n \"error_message\": \"<string>\"\n }\n}"
},
{
"name": "403 Forbidden",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\":\"Devops Night Man Squad\",\n\t\"members\":[\n \"5df9d90aba2cb0c5a4f12d44\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/squads",
"host": [
"{{baseUrl}}"
],
"path": [
"squads"
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 403,\n \"error_message\": \"<string>\"\n }\n}"
},
{
"name": "500 Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\":\"Devops Night Man Squad\",\n\t\"members\":[\n \"5df9d90aba2cb0c5a4f12d44\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/squads",
"host": [
"{{baseUrl}}"
],
"path": [
"squads"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 500,\n \"error_message\": \"<string>\"\n }\n}"
}
]
}