ERROR!
------------------- GenerateCode ----------------------
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.
new Http http;
ckbool success;
call http.SetRequestHeader("Accept","application/json");
new StringBuilder sbResponseBody;
success = http.QuickGetSb("https://api.app.ddog-gov.com/api/v1/org",sbResponseBody);
if (success == ckfalse) {
println http.LastErrorText;
return;
}
new JsonObject jResp;
call jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = ckfalse;
println "Response Body:";
println jResp.Emit();
int respStatusCode = http.LastStatus;
println "Response Status Code = ",respStatusCode;
if (respStatusCode >= 400) {
println "Response Header:";
println http.LastHeader;
println "Failed.";
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "orgs": [
// {
// "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
// },
// {
// "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: {{.https://tools.chilkat.io/jsonParse|||Generate JSON Parsing Code.}}
#ifdef IS_C_CPP
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
#undef IS_C_CPP
string v_Type;
string created;
string description;
string name;
string public_id;
ckbool Private_widget_share;
ckbool Enabled;
string Saml_autocreate_access_role;
ckbool Saml_autocreate_users_domainsEnabled;
ckbool Saml_can_be_enabled;
string Saml_idp_endpoint;
ckbool Saml_idp_initiated_loginEnabled;
ckbool Saml_idp_metadata_uploaded;
string Saml_login_url;
ckbool Saml_strict_modeEnabled;
string subscriptionType;
ckbool trial;
int j;
int count_j;
string strVal;
i = 0;
count_i = jResp.SizeOfArray("orgs");
while i < count_i {
jResp.I = i;
v_Type = jResp.StringOf("orgs[i].billing.type");
created = jResp.StringOf("orgs[i].created");
description = jResp.StringOf("orgs[i].description");
name = jResp.StringOf("orgs[i].name");
public_id = jResp.StringOf("orgs[i].public_id");
Private_widget_share = jResp.BoolOf("orgs[i].settings.private_widget_share");
Enabled = jResp.BoolOf("orgs[i].settings.saml.enabled");
Saml_autocreate_access_role = jResp.StringOf("orgs[i].settings.saml_autocreate_access_role");
Saml_autocreate_users_domainsEnabled = jResp.BoolOf("orgs[i].settings.saml_autocreate_users_domains.enabled");
Saml_can_be_enabled = jResp.BoolOf("orgs[i].settings.saml_can_be_enabled");
Saml_idp_endpoint = jResp.StringOf("orgs[i].settings.saml_idp_endpoint");
Saml_idp_initiated_loginEnabled = jResp.BoolOf("orgs[i].settings.saml_idp_initiated_login.enabled");
Saml_idp_metadata_uploaded = jResp.BoolOf("orgs[i].settings.saml_idp_metadata_uploaded");
Saml_login_url = jResp.StringOf("orgs[i].settings.saml_login_url");
Saml_strict_modeEnabled = jResp.BoolOf("orgs[i].settings.saml_strict_mode.enabled");
subscriptionType = jResp.StringOf("orgs[i].subscription.type");
trial = jResp.BoolOf("orgs[i].trial");
j = 0;
count_j = jResp.SizeOfArray("orgs[i].settings.saml_autocreate_users_domains.domains");
while j < count_j {
jResp.J = j;
strVal = jResp.StringOf("orgs[i].settings.saml_autocreate_users_domains.domains[j]");
j = j + 1;
}
i = i + 1;
}
---- end chilkat script ----
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
http.SetRequestHeader "Accept","application/json"
Dim sbResponseBody As New Chilkat.StringBuilder
success = http.QuickGetSb("https://api.app.ddog-gov.com/api/v1/org",sbResponseBody)
If (success = False) Then
System.DebugLog(http.LastErrorText)
Return
End If
Dim jResp As New Chilkat.JsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False
System.DebugLog("Response Body:")
System.DebugLog(jResp.Emit())
Dim respStatusCode As Int32
respStatusCode = http.LastStatus
System.DebugLog("Response Status Code = " + Str(respStatusCode))
If (respStatusCode >= 400) Then
System.DebugLog("Response Header:")
System.DebugLog(http.LastHeader)
System.DebugLog("Failed.")
Return
End If
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "orgs": [
// {
// "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
// },
// {
// "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
Dim v_Type As String
Dim created As String
Dim description As String
Dim name As String
Dim public_id As String
Dim Private_widget_share As Boolean
Dim Enabled As Boolean
Dim Saml_autocreate_access_role As String
Dim Saml_autocreate_users_domainsEnabled As Boolean
Dim Saml_can_be_enabled As Boolean
Dim Saml_idp_endpoint As String
Dim Saml_idp_initiated_loginEnabled As Boolean
Dim Saml_idp_metadata_uploaded As Boolean
Dim Saml_login_url As String
Dim Saml_strict_modeEnabled As Boolean
Dim subscriptionType As String
Dim trial As Boolean
Dim j As Int32
Dim count_j As Int32
Dim strVal As String
ERROR: Undefined variable(i)
ERROR: Undefined variable(count_i)
ERROR: Undefined variable(i)
ERROR: Undefined variable(count_i)
While i < count_i
ERROR: Undefined variable(i)
ERROR: No et type for RHS expression.
v_Type = jResp.StringOf("orgs[i].billing.type")
created = jResp.StringOf("orgs[i].created")
description = jResp.StringOf("orgs[i].description")
name = jResp.StringOf("orgs[i].name")
public_id = jResp.StringOf("orgs[i].public_id")
Private_widget_share = jResp.BoolOf("orgs[i].settings.private_widget_share")
Enabled = jResp.BoolOf("orgs[i].settings.saml.enabled")
Saml_autocreate_access_role = jResp.StringOf("orgs[i].settings.saml_autocreate_access_role")
Saml_autocreate_users_domainsEnabled = jResp.BoolOf("orgs[i].settings.saml_autocreate_users_domains.enabled")
Saml_can_be_enabled = jResp.BoolOf("orgs[i].settings.saml_can_be_enabled")
Saml_idp_endpoint = jResp.StringOf("orgs[i].settings.saml_idp_endpoint")
Saml_idp_initiated_loginEnabled = jResp.BoolOf("orgs[i].settings.saml_idp_initiated_login.enabled")
Saml_idp_metadata_uploaded = jResp.BoolOf("orgs[i].settings.saml_idp_metadata_uploaded")
Saml_login_url = jResp.StringOf("orgs[i].settings.saml_login_url")
Saml_strict_modeEnabled = jResp.BoolOf("orgs[i].settings.saml_strict_mode.enabled")
subscriptionType = jResp.StringOf("orgs[i].subscription.type")
trial = jResp.BoolOf("orgs[i].trial")
j = 0
count_j = jResp.SizeOfArray("orgs[i].settings.saml_autocreate_users_domains.domains")
While j < count_j
jResp.J = j
strVal = jResp.StringOf("orgs[i].settings.saml_autocreate_users_domains.domains[j]")
j = j + 1
Wend
ERROR: Undefined variable(i)
ERROR: Missing et type attribute (b)
ERROR: Undefined variable(i)
Wend
Curl Command
curl -X GET
-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v1/org
Postman Collection Item JSON
{
"name": "List your managed organizations",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/org",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org"
]
},
"description": "This endpoint returns data on your top-level organization."
},
"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",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"orgs\": [\n {\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 {\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 ]\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",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org"
]
}
},
"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",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"org"
]
}
},
"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}"
}
]
}