Back to Collection Items
#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
#include <CkStringBuilder.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "data": {
// "attributes": {
// "api_key": "<string>",
// "api_secret": "<string>",
// "resources": [
// {
// "resource_type": "<string>",
// "enable_custom_metrics": false,
// "id": "<string>",
// "tags": [
// "<string>",
// "<string>"
// ]
// },
// {
// "resource_type": "<string>",
// "enable_custom_metrics": false,
// "id": "<string>",
// "tags": [
// "<string>",
// "<string>"
// ]
// }
// ],
// "tags": [
// "<string>",
// "<string>"
// ]
// },
// "type": "confluent-cloud-accounts"
// }
// }
CkJsonObject json;
json.UpdateString("data.attributes.api_key","<string>");
json.UpdateString("data.attributes.api_secret","<string>");
json.UpdateString("data.attributes.resources[0].resource_type","<string>");
json.UpdateBool("data.attributes.resources[0].enable_custom_metrics",false);
json.UpdateString("data.attributes.resources[0].id","<string>");
json.UpdateString("data.attributes.resources[0].tags[0]","<string>");
json.UpdateString("data.attributes.resources[0].tags[1]","<string>");
json.UpdateString("data.attributes.resources[1].resource_type","<string>");
json.UpdateBool("data.attributes.resources[1].enable_custom_metrics",false);
json.UpdateString("data.attributes.resources[1].id","<string>");
json.UpdateString("data.attributes.resources[1].tags[0]","<string>");
json.UpdateString("data.attributes.resources[1].tags[1]","<string>");
json.UpdateString("data.attributes.tags[0]","<string>");
json.UpdateString("data.attributes.tags[1]","<string>");
json.UpdateString("data.type","confluent-cloud-accounts");
http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("Accept","application/json");
CkHttpResponse *resp = http.PostJson3("https://api.app.ddog-gov.com/api/v2/integrations/confluent-cloud/accounts","application/json",json);
if (http.get_LastMethodSuccess() == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
CkStringBuilder sbResponseBody;
resp->GetBodySb(sbResponseBody);
CkJsonObject jResp;
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
std::cout << "Response Body:" << "\r\n";
std::cout << jResp.emit() << "\r\n";
int respStatusCode = resp->get_StatusCode();
std::cout << "Response Status Code = " << respStatusCode << "\r\n";
if (respStatusCode >= 400) {
std::cout << "Response Header:" << "\r\n";
std::cout << resp->header() << "\r\n";
std::cout << "Failed." << "\r\n";
delete resp;
return;
}
delete resp;
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": {
// "attributes": {
// "api_key": "<string>",
// "resources": [
// {
// "resource_type": "<string>",
// "enable_custom_metrics": false,
// "id": "<string>",
// "tags": [
// "<string>",
// "<string>"
// ]
// },
// {
// "resource_type": "<string>",
// "enable_custom_metrics": false,
// "id": "<string>",
// "tags": [
// "<string>",
// "<string>"
// ]
// }
// ],
// "tags": [
// "<string>",
// "<string>"
// ]
// },
// "id": "<string>",
// "type": "confluent-cloud-accounts"
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
const char *resource_type = 0;
bool enable_custom_metrics;
const char *id = 0;
int j;
int count_j;
const char *strVal = 0;
const char *Api_key = jResp.stringOf("data.attributes.api_key");
const char *Id = jResp.stringOf("data.id");
const char *v_Type = jResp.stringOf("data.type");
int i = 0;
int count_i = jResp.SizeOfArray("data.attributes.resources");
while (i < count_i) {
jResp.put_I(i);
resource_type = jResp.stringOf("data.attributes.resources[i].resource_type");
enable_custom_metrics = jResp.BoolOf("data.attributes.resources[i].enable_custom_metrics");
id = jResp.stringOf("data.attributes.resources[i].id");
j = 0;
count_j = jResp.SizeOfArray("data.attributes.resources[i].tags");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("data.attributes.resources[i].tags[j]");
j = j + 1;
}
i = i + 1;
}
i = 0;
count_i = jResp.SizeOfArray("data.attributes.tags");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf("data.attributes.tags[i]");
i = i + 1;
}
}
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"data": {
"attributes": {
"api_key": "<string>",
"api_secret": "<string>",
"resources": [
{
"resource_type": "<string>",
"enable_custom_metrics": false,
"id": "<string>",
"tags": [
"<string>",
"<string>"
]
},
{
"resource_type": "<string>",
"enable_custom_metrics": false,
"id": "<string>",
"tags": [
"<string>",
"<string>"
]
}
],
"tags": [
"<string>",
"<string>"
]
},
"type": "confluent-cloud-accounts"
}
}'
https://api.app.ddog-gov.com/api/v2/integrations/confluent-cloud/accounts
Postman Collection Item JSON
{
"name": "Add Confluent account",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"api_secret\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"type\": \"confluent-cloud-accounts\"\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"integrations",
"confluent-cloud",
"accounts"
]
},
"description": "Create a Confluent account."
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"api_secret\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"type\": \"confluent-cloud-accounts\"\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"integrations",
"confluent-cloud",
"accounts"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"id\": \"<string>\",\n \"type\": \"confluent-cloud-accounts\"\n }\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"api_secret\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"type\": \"confluent-cloud-accounts\"\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"integrations",
"confluent-cloud",
"accounts"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"<string>\",\n \"<string>\"\n ]\n}"
},
{
"name": "Forbidden",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"api_secret\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"type\": \"confluent-cloud-accounts\"\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"integrations",
"confluent-cloud",
"accounts"
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"<string>\",\n \"<string>\"\n ]\n}"
},
{
"name": "Not Found",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"api_secret\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"type\": \"confluent-cloud-accounts\"\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"integrations",
"confluent-cloud",
"accounts"
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"<string>\",\n \"<string>\"\n ]\n}"
},
{
"name": "Too many requests",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": {\n \"attributes\": {\n \"api_key\": \"<string>\",\n \"api_secret\": \"<string>\",\n \"resources\": [\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n {\n \"resource_type\": \"<string>\",\n \"enable_custom_metrics\": false,\n \"id\": \"<string>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n }\n ],\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ]\n },\n \"type\": \"confluent-cloud-accounts\"\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"integrations",
"confluent-cloud",
"accounts"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"<string>\",\n \"<string>\"\n ]\n}"
}
]
}