Chilkat Online Tools

VB6 / Datadog API Collection / Get organization information

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 ChilkatHttp
Dim success As Long

http.SetRequestHeader "Accept","application/json"

Dim sbResponseBody As New ChilkatStringBuilder
success = http.QuickGetSb("https://api.app.ddog-gov.com/api/v1/org/:public_id",sbResponseBody)
If (success = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Debug.Print "Response Body:"
Debug.Print jResp.Emit()

Dim respStatusCode As Long
respStatusCode = http.LastStatus
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Header:"
    Debug.Print http.LastHeader
    Debug.Print "Failed."
    Exit Sub
End If

' 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

Dim strVal As String

Dim v_Type As String
v_Type = jResp.StringOf("org.billing.type")
Dim Created As String
Created = jResp.StringOf("org.created")
Dim Description As String
Description = jResp.StringOf("org.description")
Dim Name As String
Name = jResp.StringOf("org.name")
Dim Public_id As String
Public_id = jResp.StringOf("org.public_id")
Dim Private_widget_share As Long
Private_widget_share = jResp.BoolOf("org.settings.private_widget_share")
Dim Enabled As Long
Enabled = jResp.BoolOf("org.settings.saml.enabled")
Dim Saml_autocreate_access_role As String
Saml_autocreate_access_role = jResp.StringOf("org.settings.saml_autocreate_access_role")
Dim Saml_autocreate_users_domainsEnabled As Long
Saml_autocreate_users_domainsEnabled = jResp.BoolOf("org.settings.saml_autocreate_users_domains.enabled")
Dim Saml_can_be_enabled As Long
Saml_can_be_enabled = jResp.BoolOf("org.settings.saml_can_be_enabled")
Dim Saml_idp_endpoint As String
Saml_idp_endpoint = jResp.StringOf("org.settings.saml_idp_endpoint")
Dim Saml_idp_initiated_loginEnabled As Long
Saml_idp_initiated_loginEnabled = jResp.BoolOf("org.settings.saml_idp_initiated_login.enabled")
Dim Saml_idp_metadata_uploaded As Long
Saml_idp_metadata_uploaded = jResp.BoolOf("org.settings.saml_idp_metadata_uploaded")
Dim Saml_login_url As String
Saml_login_url = jResp.StringOf("org.settings.saml_login_url")
Dim Saml_strict_modeEnabled As Long
Saml_strict_modeEnabled = jResp.BoolOf("org.settings.saml_strict_mode.enabled")
Dim SubscriptionType As String
SubscriptionType = jResp.StringOf("org.subscription.type")
Dim Trial As Long
Trial = jResp.BoolOf("org.trial")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("org.settings.saml_autocreate_users_domains.domains")
Do While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("org.settings.saml_autocreate_users_domains.domains[i]")
    i = i + 1
Loop

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}"
    }
  ]
}