Chilkat Online Tools

VB.NET / Datadog API Collection / Create a child organization

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

' Use this online tool to generate code from sample JSON: Generate Code to Create JSON

' The following JSON is sent in the request body.

' {
'   "name": "New child org",
'   "billing": {
'     "type": "parent_billing"
'   },
'   "subscription": {
'     "type": "pro"
'   }
' }

Dim json As New Chilkat.JsonObject
json.UpdateString("name","New child org")
json.UpdateString("billing.type","parent_billing")
json.UpdateString("subscription.type","pro")

http.SetRequestHeader("Content-Type","application/json")
http.SetRequestHeader("Accept","application/json")

Dim resp As Chilkat.HttpResponse = http.PostJson3("https://api.app.ddog-gov.com/api/v1/org","application/json",json)
If (http.LastMethodSuccess = False) Then
    Debug.WriteLine(http.LastErrorText)
    Exit Sub
End If


Dim sbResponseBody As New Chilkat.StringBuilder
resp.GetBodySb(sbResponseBody)

Dim jResp As New Chilkat.JsonObject
jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False

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

Dim respStatusCode As Integer = resp.StatusCode
Debug.WriteLine("Response Status Code = " & respStatusCode)
If (respStatusCode >= 400) Then
    Debug.WriteLine("Response Header:")
    Debug.WriteLine(resp.Header)
    Debug.WriteLine("Failed.")

    Exit Sub
End If



' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)

' {
'   "api_key": {
'     "created": "2019-08-02 15:31:07",
'     "created_by": "john@example.com",
'     "key": "1234512345123456abcabc912349abcd",
'     "name": "example user"
'   },
'   "application_key": {
'     "hash": "1234512345123459cda4eb9ced49a3d84fd0138c",
'     "name": "example user",
'     "owner": "example.com"
'   },
'   "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
'   },
'   "user": {
'     "access_role": "ro",
'     "disabled": false,
'     "email": "test@datadoghq.com",
'     "handle": "test@datadoghq.com",
'     "icon": "/path/to/matching/gravatar/icon",
'     "name": "test user",
'     "verified": true
'   }
' }

' 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 Created As String = jResp.StringOf("api_key.created")
Dim Created_by As String = jResp.StringOf("api_key.created_by")
Dim Key As String = jResp.StringOf("api_key.key")
Dim Name As String = jResp.StringOf("api_key.name")
Dim Hash As String = jResp.StringOf("application_key.hash")
Dim application_keyName As String = jResp.StringOf("application_key.name")
Dim Owner As String = jResp.StringOf("application_key.owner")
Dim v_Type As String = jResp.StringOf("org.billing.type")
Dim orgCreated As String = jResp.StringOf("org.created")
Dim Description As String = jResp.StringOf("org.description")
Dim orgName As String = jResp.StringOf("org.name")
Dim Public_id As String = jResp.StringOf("org.public_id")
Dim Private_widget_share As Boolean = jResp.BoolOf("org.settings.private_widget_share")
Dim Enabled As Boolean = jResp.BoolOf("org.settings.saml.enabled")
Dim Saml_autocreate_access_role As String = jResp.StringOf("org.settings.saml_autocreate_access_role")
Dim Saml_autocreate_users_domainsEnabled As Boolean = jResp.BoolOf("org.settings.saml_autocreate_users_domains.enabled")
Dim Saml_can_be_enabled As Boolean = jResp.BoolOf("org.settings.saml_can_be_enabled")
Dim Saml_idp_endpoint As String = jResp.StringOf("org.settings.saml_idp_endpoint")
Dim Saml_idp_initiated_loginEnabled As Boolean = jResp.BoolOf("org.settings.saml_idp_initiated_login.enabled")
Dim Saml_idp_metadata_uploaded As Boolean = jResp.BoolOf("org.settings.saml_idp_metadata_uploaded")
Dim Saml_login_url As String = jResp.StringOf("org.settings.saml_login_url")
Dim Saml_strict_modeEnabled As Boolean = jResp.BoolOf("org.settings.saml_strict_mode.enabled")
Dim SubscriptionType As String = jResp.StringOf("org.subscription.type")
Dim Trial As Boolean = jResp.BoolOf("org.trial")
Dim Access_role As String = jResp.StringOf("user.access_role")
Dim Disabled As Boolean = jResp.BoolOf("user.disabled")
Dim v_Email As String = jResp.StringOf("user.email")
Dim Handle As String = jResp.StringOf("user.handle")
Dim Icon As String = jResp.StringOf("user.icon")
Dim userName As String = jResp.StringOf("user.name")
Dim Verified As Boolean = jResp.BoolOf("user.verified")
Dim i As Integer = 0
Dim count_i As Integer = jResp.SizeOfArray("org.settings.saml_autocreate_users_domains.domains")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("org.settings.saml_autocreate_users_domains.domains[i]")
    i = i + 1
End While

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "name": "New child org",
  "billing": {
    "type": "parent_billing"
  },
  "subscription": {
    "type": "pro"
  }
}'
https://api.app.ddog-gov.com/api/v1/org

Postman Collection Item JSON

{
  "name": "Create a child organization",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"name\": \"New child org\",\n  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  }\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v1/org",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "org"
      ]
    },
    "description": "Create a child organization.\n\nThis endpoint requires the\n[multi-organization account](https://docs.datadoghq.com/account_management/multi_organization/)\nfeature and must be enabled by\n[contacting support](https://docs.datadoghq.com/help/).\n\nOnce a new child organization is created, you can interact with it\nby using the `org.public_id`, `api_key.key`, and\n`application_key.hash` provided in the response."
  },
  "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  \"name\": \"New child org\",\n  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "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  \"api_key\": {\n    \"created\": \"2019-08-02 15:31:07\",\n    \"created_by\": \"john@example.com\",\n    \"key\": \"1234512345123456abcabc912349abcd\",\n    \"name\": \"example user\"\n  },\n  \"application_key\": {\n    \"hash\": \"1234512345123459cda4eb9ced49a3d84fd0138c\",\n    \"name\": \"example user\",\n    \"owner\": \"example.com\"\n  },\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  \"user\": {\n    \"access_role\": \"ro\",\n    \"disabled\": false,\n    \"email\": \"test@datadoghq.com\",\n    \"handle\": \"test@datadoghq.com\",\n    \"icon\": \"/path/to/matching/gravatar/icon\",\n    \"name\": \"test user\",\n    \"verified\": true\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  \"name\": \"New child org\",\n  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "org"
          ]
        }
      },
      "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": "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  \"name\": \"New child org\",\n  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "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": "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  \"name\": \"New child org\",\n  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "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}"
    }
  ]
}