Back to Collection Items
var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
strVal: PWideChar;
v_Type: PWideChar;
Created: PWideChar;
Description: PWideChar;
Name: PWideChar;
Public_id: PWideChar;
Private_widget_share: Boolean;
Enabled: Boolean;
Saml_autocreate_access_role: PWideChar;
Saml_autocreate_users_domainsEnabled: Boolean;
Saml_can_be_enabled: Boolean;
Saml_idp_endpoint: PWideChar;
Saml_idp_initiated_loginEnabled: Boolean;
Saml_idp_metadata_uploaded: Boolean;
Saml_login_url: PWideChar;
Saml_strict_modeEnabled: Boolean;
SubscriptionType: PWideChar;
Trial: Boolean;
i: Integer;
count_i: Integer;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := CkHttp_Create();
CkHttp_SetRequestHeader(http,'Accept','application/json');
sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://api.app.ddog-gov.com/api/v1/org/:public_id',sbResponseBody);
if (success = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));
respStatusCode := CkHttp_getLastStatus(http);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
begin
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(CkHttp__lastHeader(http));
Memo1.Lines.Add('Failed.');
Exit;
end;
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "org": {
// "billing": {
// "type": "parent_billing"
// },
// "created": "2019-09-26T17:28:28Z",
// "description": "some description",
// "name": "New child org",
// "public_id": "abcdef12345",
// "settings": {
// "private_widget_share": false,
// "saml": {
// "enabled": false
// },
// "saml_autocreate_access_role": "ro",
// "saml_autocreate_users_domains": {
// "domains": [
// "example.com",
// "example.com"
// ],
// "enabled": false
// },
// "saml_can_be_enabled": false,
// "saml_idp_endpoint": "https://my.saml.endpoint",
// "saml_idp_initiated_login": {
// "enabled": false
// },
// "saml_idp_metadata_uploaded": false,
// "saml_login_url": "https://my.saml.login.url",
// "saml_strict_mode": {
// "enabled": false
// }
// },
// "subscription": {
// "type": "pro"
// },
// "trial": false
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
v_Type := CkJsonObject__stringOf(jResp,'org.billing.type');
Created := CkJsonObject__stringOf(jResp,'org.created');
Description := CkJsonObject__stringOf(jResp,'org.description');
Name := CkJsonObject__stringOf(jResp,'org.name');
Public_id := CkJsonObject__stringOf(jResp,'org.public_id');
Private_widget_share := CkJsonObject_BoolOf(jResp,'org.settings.private_widget_share');
Enabled := CkJsonObject_BoolOf(jResp,'org.settings.saml.enabled');
Saml_autocreate_access_role := CkJsonObject__stringOf(jResp,'org.settings.saml_autocreate_access_role');
Saml_autocreate_users_domainsEnabled := CkJsonObject_BoolOf(jResp,'org.settings.saml_autocreate_users_domains.enabled');
Saml_can_be_enabled := CkJsonObject_BoolOf(jResp,'org.settings.saml_can_be_enabled');
Saml_idp_endpoint := CkJsonObject__stringOf(jResp,'org.settings.saml_idp_endpoint');
Saml_idp_initiated_loginEnabled := CkJsonObject_BoolOf(jResp,'org.settings.saml_idp_initiated_login.enabled');
Saml_idp_metadata_uploaded := CkJsonObject_BoolOf(jResp,'org.settings.saml_idp_metadata_uploaded');
Saml_login_url := CkJsonObject__stringOf(jResp,'org.settings.saml_login_url');
Saml_strict_modeEnabled := CkJsonObject_BoolOf(jResp,'org.settings.saml_strict_mode.enabled');
SubscriptionType := CkJsonObject__stringOf(jResp,'org.subscription.type');
Trial := CkJsonObject_BoolOf(jResp,'org.trial');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'org.settings.saml_autocreate_users_domains.domains');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'org.settings.saml_autocreate_users_domains.domains[i]');
i := i + 1;
end;
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
Curl Command
curl -X GET
-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v1/org/:public_id
Postman Collection Item JSON
{
"name": "Get organization information",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/org/:public_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org",
":public_id"
],
"variable": [
{
"key": "public_id",
"value": "abc123"
}
]
},
"description": "Get organization information."
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/org/:public_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org",
":public_id"
],
"variable": [
{
"key": "public_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"org\": {\n \"billing\": {\n \"type\": \"parent_billing\"\n },\n \"created\": \"2019-09-26T17:28:28Z\",\n \"description\": \"some description\",\n \"name\": \"New child org\",\n \"public_id\": \"abcdef12345\",\n \"settings\": {\n \"private_widget_share\": false,\n \"saml\": {\n \"enabled\": false\n },\n \"saml_autocreate_access_role\": \"ro\",\n \"saml_autocreate_users_domains\": {\n \"domains\": [\n \"example.com\",\n \"example.com\"\n ],\n \"enabled\": false\n },\n \"saml_can_be_enabled\": false,\n \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n \"saml_idp_initiated_login\": {\n \"enabled\": false\n },\n \"saml_idp_metadata_uploaded\": false,\n \"saml_login_url\": \"https://my.saml.login.url\",\n \"saml_strict_mode\": {\n \"enabled\": false\n }\n },\n \"subscription\": {\n \"type\": \"pro\"\n },\n \"trial\": false\n }\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/org/:public_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org",
":public_id"
],
"variable": [
{
"key": "public_id"
}
]
}
},
"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": "Forbidden",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/org/:public_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org",
":public_id"
],
"variable": [
{
"key": "public_id"
}
]
}
},
"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": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/org/:public_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org",
":public_id"
],
"variable": [
{
"key": "public_id"
}
]
}
},
"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}"
}
]
}