PowerBuilder / Datadog API Collection / Create a child organization
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_StrVal
string ls_Created
string ls_Created_by
string ls_Key
string ls_Name
string ls_Hash
string ls_Application_keyName
string ls_Owner
string ls_V_Type
string ls_OrgCreated
string ls_Description
string ls_OrgName
string ls_Public_id
integer li_Private_widget_share
integer li_Enabled
string ls_Saml_autocreate_access_role
integer li_Saml_autocreate_users_domainsEnabled
integer li_Saml_can_be_enabled
string ls_Saml_idp_endpoint
integer li_Saml_idp_initiated_loginEnabled
integer li_Saml_idp_metadata_uploaded
string ls_Saml_login_url
integer li_Saml_strict_modeEnabled
string ls_SubscriptionType
integer li_Trial
string ls_Access_role
integer li_Disabled
string ls_V_Email
string ls_Handle
string ls_Icon
string ls_UserName
integer li_Verified
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// 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"
// }
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("name","New child org")
loo_Json.UpdateString("billing.type","parent_billing")
loo_Json.UpdateString("subscription.type","pro")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Http.SetRequestHeader("Accept","application/json")
loo_Resp = loo_Http.PostJson3("https://api.app.ddog-gov.com/api/v1/org","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// 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
ls_Created = loo_JResp.StringOf("api_key.created")
ls_Created_by = loo_JResp.StringOf("api_key.created_by")
ls_Key = loo_JResp.StringOf("api_key.key")
ls_Name = loo_JResp.StringOf("api_key.name")
ls_Hash = loo_JResp.StringOf("application_key.hash")
ls_Application_keyName = loo_JResp.StringOf("application_key.name")
ls_Owner = loo_JResp.StringOf("application_key.owner")
ls_V_Type = loo_JResp.StringOf("org.billing.type")
ls_OrgCreated = loo_JResp.StringOf("org.created")
ls_Description = loo_JResp.StringOf("org.description")
ls_OrgName = loo_JResp.StringOf("org.name")
ls_Public_id = loo_JResp.StringOf("org.public_id")
li_Private_widget_share = loo_JResp.BoolOf("org.settings.private_widget_share")
li_Enabled = loo_JResp.BoolOf("org.settings.saml.enabled")
ls_Saml_autocreate_access_role = loo_JResp.StringOf("org.settings.saml_autocreate_access_role")
li_Saml_autocreate_users_domainsEnabled = loo_JResp.BoolOf("org.settings.saml_autocreate_users_domains.enabled")
li_Saml_can_be_enabled = loo_JResp.BoolOf("org.settings.saml_can_be_enabled")
ls_Saml_idp_endpoint = loo_JResp.StringOf("org.settings.saml_idp_endpoint")
li_Saml_idp_initiated_loginEnabled = loo_JResp.BoolOf("org.settings.saml_idp_initiated_login.enabled")
li_Saml_idp_metadata_uploaded = loo_JResp.BoolOf("org.settings.saml_idp_metadata_uploaded")
ls_Saml_login_url = loo_JResp.StringOf("org.settings.saml_login_url")
li_Saml_strict_modeEnabled = loo_JResp.BoolOf("org.settings.saml_strict_mode.enabled")
ls_SubscriptionType = loo_JResp.StringOf("org.subscription.type")
li_Trial = loo_JResp.BoolOf("org.trial")
ls_Access_role = loo_JResp.StringOf("user.access_role")
li_Disabled = loo_JResp.BoolOf("user.disabled")
ls_V_Email = loo_JResp.StringOf("user.email")
ls_Handle = loo_JResp.StringOf("user.handle")
ls_Icon = loo_JResp.StringOf("user.icon")
ls_UserName = loo_JResp.StringOf("user.name")
li_Verified = loo_JResp.BoolOf("user.verified")
i = 0
li_Count_i = loo_JResp.SizeOfArray("org.settings.saml_autocreate_users_domains.domains")
do while i < li_Count_i
loo_JResp.I = i
ls_StrVal = loo_JResp.StringOf("org.settings.saml_autocreate_users_domains.domains[i]")
i = i + 1
loop
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
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}"
}
]
}