Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
HCkStringBuilderW sbResponseBody;
HCkJsonObjectW jResp;
int respStatusCode;
const wchar_t *dash_name;
const wchar_t *dash_url;
const wchar_t *embed_id;
const wchar_t *graph_title;
const wchar_t *html;
BOOL revoked;
int shared_by;
// 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.
// {
// "graph_json": "",
// "legend": "no",
// "size": "medium",
// "timeframe": "1_hour",
// "title": "Embed created through API"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"graph_json",L"");
CkJsonObjectW_UpdateString(json,L"legend",L"no");
CkJsonObjectW_UpdateString(json,L"size",L"medium");
CkJsonObjectW_UpdateString(json,L"timeframe",L"1_hour");
CkJsonObjectW_UpdateString(json,L"title",L"Embed created through API");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");
resp = CkHttpW_PostJson3(http,L"https://api.app.ddog-gov.com/api/v1/graph/embed",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
sbResponseBody = CkStringBuilderW_Create();
CkHttpResponseW_GetBodySb(resp,sbResponseBody);
jResp = CkJsonObjectW_Create();
CkJsonObjectW_LoadSb(jResp,sbResponseBody);
CkJsonObjectW_putEmitCompact(jResp,FALSE);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",CkJsonObjectW_emit(jResp));
respStatusCode = CkHttpResponseW_getStatusCode(resp);
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",CkHttpResponseW_header(resp));
wprintf(L"Failed.\n");
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
return;
}
CkHttpResponseW_Dispose(resp);
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "dash_name": "proident ut commodo",
// "dash_url": "sint elit",
// "embed_id": "velit",
// "graph_title": "Excepteur ea consectetur sunt sint",
// "html": "non cupidatat in veniam",
// "revoked": false,
// "shared_by": 76702863
// }
// 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.
dash_name = CkJsonObjectW_stringOf(jResp,L"dash_name");
dash_url = CkJsonObjectW_stringOf(jResp,L"dash_url");
embed_id = CkJsonObjectW_stringOf(jResp,L"embed_id");
graph_title = CkJsonObjectW_stringOf(jResp,L"graph_title");
html = CkJsonObjectW_stringOf(jResp,L"html");
revoked = CkJsonObjectW_BoolOf(jResp,L"revoked");
shared_by = CkJsonObjectW_IntOf(jResp,L"shared_by");
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
}
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"graph_json": "",
"legend": "no",
"size": "medium",
"timeframe": "1_hour",
"title": "Embed created through API"
}'
https://api.app.ddog-gov.com/api/v1/graph/embed
Postman Collection Item JSON
{
"name": "Create embed",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"graph_json\": \"\",\n \"legend\": \"no\",\n \"size\": \"medium\",\n \"timeframe\": \"1_hour\",\n \"title\": \"Embed created through API\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/graph/embed",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"graph",
"embed"
]
},
"description": "Creates a new embeddable graph.\n\nNote: If an embed already exists for the exact same query in a given organization,\nthe older embed is returned instead of creating a new embed.\n\nIf you are interested in using template variables, see\n[Embeddable Graphs with Template Variables](https://docs.datadoghq.com/dashboards/faq/embeddable-graphs-with-template-variables)."
},
"response": [
{
"name": "Payload accepted",
"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 \"graph_json\": \"\",\n \"legend\": \"no\",\n \"size\": \"medium\",\n \"timeframe\": \"1_hour\",\n \"title\": \"Embed created through API\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/graph/embed",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"graph",
"embed"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"dash_name\": \"proident ut commodo\",\n \"dash_url\": \"sint elit\",\n \"embed_id\": \"velit\",\n \"graph_title\": \"Excepteur ea consectetur sunt sint\",\n \"html\": \"non cupidatat in veniam\",\n \"revoked\": false,\n \"shared_by\": 76702863\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 \"graph_json\": \"\",\n \"legend\": \"no\",\n \"size\": \"medium\",\n \"timeframe\": \"1_hour\",\n \"title\": \"Embed created through API\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/graph/embed",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"graph",
"embed"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
},
{
"name": "Authentication Error",
"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 \"graph_json\": \"\",\n \"legend\": \"no\",\n \"size\": \"medium\",\n \"timeframe\": \"1_hour\",\n \"title\": \"Embed created through API\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/graph/embed",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"graph",
"embed"
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\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 \"graph_json\": \"\",\n \"legend\": \"no\",\n \"size\": \"medium\",\n \"timeframe\": \"1_hour\",\n \"title\": \"Embed created through API\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/graph/embed",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"graph",
"embed"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
}
]
}