Chilkat Online Tools

PowerBuilder / Datadog API Collection / Create a user

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_Id
string ls_V_type
string ls_AttributesCreated_at
string ls_Description
string ls_AttributesDisabled
string ls_AttributesModified_at
string ls_AttributesName
string ls_Public_id
string ls_Sharing
string ls_V_Url
string ls_Created_at
string ls_Disabled
string ls_V_Email
string ls_Handle
string ls_Icon
string ls_Modified_at
string ls_Name
string ls_Service_account
string ls_Status
string ls_Title
string ls_Verified
string ls_Id
string ls_DataId
string ls_V_Type
string ls_DataType
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
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.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.

// {
//   "data": {
//     "attributes": {
//       "email": "<string>",
//       "name": "<string>",
//       "title": "<string>"
//     },
//     "type": "users",
//     "relationships": {
//       "roles": {
//         "data": [
//           {
//             "id": "<string>",
//             "type": "roles"
//           },
//           {
//             "id": "<string>",
//             "type": "roles"
//           }
//         ]
//       }
//     }
//   }
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_Json.UpdateString("data.attributes.email","<string>")
loo_Json.UpdateString("data.attributes.name","<string>")
loo_Json.UpdateString("data.attributes.title","<string>")
loo_Json.UpdateString("data.type","users")
loo_Json.UpdateString("data.relationships.roles.data[0].id","<string>")
loo_Json.UpdateString("data.relationships.roles.data[0].type","roles")
loo_Json.UpdateString("data.relationships.roles.data[1].id","<string>")
loo_Json.UpdateString("data.relationships.roles.data[1].type","roles")

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/v2/users","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
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.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)

// {
//   "data": {
//     "attributes": {
//       "created_at": "<dateTime>",
//       "disabled": "<boolean>",
//       "email": "<string>",
//       "handle": "<string>",
//       "icon": "<string>",
//       "modified_at": "<dateTime>",
//       "name": "<string>",
//       "service_account": "<boolean>",
//       "status": "<string>",
//       "title": "<string>",
//       "verified": "<boolean>"
//     },
//     "id": "<string>",
//     "relationships": {
//       "org": {
//         "data": {
//           "id": "<string>",
//           "type": "orgs"
//         }
//       },
//       "other_orgs": {
//         "data": [
//           {
//             "id": "<string>",
//             "type": "orgs"
//           },
//           {
//             "id": "<string>",
//             "type": "orgs"
//           }
//         ]
//       },
//       "other_users": {
//         "data": [
//           {
//             "id": "<string>",
//             "type": "users"
//           },
//           {
//             "id": "<string>",
//             "type": "users"
//           }
//         ]
//       },
//       "roles": {
//         "data": [
//           {
//             "id": "<string>",
//             "type": "roles"
//           },
//           {
//             "id": "<string>",
//             "type": "roles"
//           }
//         ]
//       }
//     },
//     "type": "users"
//   },
//   "included": [
//     {
//       "type": "orgs",
//       "attributes": {
//         "created_at": "<dateTime>",
//         "description": "<string>",
//         "disabled": "<boolean>",
//         "modified_at": "<dateTime>",
//         "name": "<string>",
//         "public_id": "<string>",
//         "sharing": "<string>",
//         "url": "<string>"
//       },
//       "id": "<string>"
//     },
//     {
//       "type": "orgs",
//       "attributes": {
//         "created_at": "<dateTime>",
//         "description": "<string>",
//         "disabled": "<boolean>",
//         "modified_at": "<dateTime>",
//         "name": "<string>",
//         "public_id": "<string>",
//         "sharing": "<string>",
//         "url": "<string>"
//       },
//       "id": "<string>"
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

ls_Created_at = loo_JResp.StringOf("data.attributes.created_at")
ls_Disabled = loo_JResp.StringOf("data.attributes.disabled")
ls_V_Email = loo_JResp.StringOf("data.attributes.email")
ls_Handle = loo_JResp.StringOf("data.attributes.handle")
ls_Icon = loo_JResp.StringOf("data.attributes.icon")
ls_Modified_at = loo_JResp.StringOf("data.attributes.modified_at")
ls_Name = loo_JResp.StringOf("data.attributes.name")
ls_Service_account = loo_JResp.StringOf("data.attributes.service_account")
ls_Status = loo_JResp.StringOf("data.attributes.status")
ls_Title = loo_JResp.StringOf("data.attributes.title")
ls_Verified = loo_JResp.StringOf("data.attributes.verified")
ls_Id = loo_JResp.StringOf("data.id")
ls_DataId = loo_JResp.StringOf("data.relationships.org.data.id")
ls_V_Type = loo_JResp.StringOf("data.relationships.org.data.type")
ls_DataType = loo_JResp.StringOf("data.type")
i = 0
li_Count_i = loo_JResp.SizeOfArray("data.relationships.other_orgs.data")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("data.relationships.other_orgs.data[i].id")
    ls_V_type = loo_JResp.StringOf("data.relationships.other_orgs.data[i].type")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("data.relationships.other_users.data")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("data.relationships.other_users.data[i].id")
    ls_V_type = loo_JResp.StringOf("data.relationships.other_users.data[i].type")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("data.relationships.roles.data")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("data.relationships.roles.data[i].id")
    ls_V_type = loo_JResp.StringOf("data.relationships.roles.data[i].type")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("included")
do while i < li_Count_i
    loo_JResp.I = i
    ls_V_type = loo_JResp.StringOf("included[i].type")
    ls_AttributesCreated_at = loo_JResp.StringOf("included[i].attributes.created_at")
    ls_Description = loo_JResp.StringOf("included[i].attributes.description")
    ls_AttributesDisabled = loo_JResp.StringOf("included[i].attributes.disabled")
    ls_AttributesModified_at = loo_JResp.StringOf("included[i].attributes.modified_at")
    ls_AttributesName = loo_JResp.StringOf("included[i].attributes.name")
    ls_Public_id = loo_JResp.StringOf("included[i].attributes.public_id")
    ls_Sharing = loo_JResp.StringOf("included[i].attributes.sharing")
    ls_V_Url = loo_JResp.StringOf("included[i].attributes.url")
    ls_Id = loo_JResp.StringOf("included[i].id")
    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 '{
  "data": {
    "attributes": {
      "email": "<string>",
      "name": "<string>",
      "title": "<string>"
    },
    "type": "users",
    "relationships": {
      "roles": {
        "data": [
          {
            "id": "<string>",
            "type": "roles"
          },
          {
            "id": "<string>",
            "type": "roles"
          }
        ]
      }
    }
  }
}'
https://api.app.ddog-gov.com/api/v2/users

Postman Collection Item JSON

{
  "name": "Create a user",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"data\": {\n    \"attributes\": {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"title\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"relationships\": {\n      \"roles\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          }\n        ]\n      }\n    }\n  }\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v2/users",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "users"
      ]
    },
    "description": "Create a user for your organization."
  },
  "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  \"data\": {\n    \"attributes\": {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"title\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"relationships\": {\n      \"roles\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          }\n        ]\n      }\n    }\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"data\": {\n    \"attributes\": {\n      \"created_at\": \"<dateTime>\",\n      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"handle\": \"<string>\",\n      \"icon\": \"<string>\",\n      \"modified_at\": \"<dateTime>\",\n      \"name\": \"<string>\",\n      \"service_account\": \"<boolean>\",\n      \"status\": \"<string>\",\n      \"title\": \"<string>\",\n      \"verified\": \"<boolean>\"\n    },\n    \"id\": \"<string>\",\n    \"relationships\": {\n      \"org\": {\n        \"data\": {\n          \"id\": \"<string>\",\n          \"type\": \"orgs\"\n        }\n      },\n      \"other_orgs\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"orgs\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"orgs\"\n          }\n        ]\n      },\n      \"other_users\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"users\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"users\"\n          }\n        ]\n      },\n      \"roles\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          }\n        ]\n      }\n    },\n    \"type\": \"users\"\n  },\n  \"included\": [\n    {\n      \"type\": \"orgs\",\n      \"attributes\": {\n        \"created_at\": \"<dateTime>\",\n        \"description\": \"<string>\",\n        \"disabled\": \"<boolean>\",\n        \"modified_at\": \"<dateTime>\",\n        \"name\": \"<string>\",\n        \"public_id\": \"<string>\",\n        \"sharing\": \"<string>\",\n        \"url\": \"<string>\"\n      },\n      \"id\": \"<string>\"\n    },\n    {\n      \"type\": \"orgs\",\n      \"attributes\": {\n        \"created_at\": \"<dateTime>\",\n        \"description\": \"<string>\",\n        \"disabled\": \"<boolean>\",\n        \"modified_at\": \"<dateTime>\",\n        \"name\": \"<string>\",\n        \"public_id\": \"<string>\",\n        \"sharing\": \"<string>\",\n        \"url\": \"<string>\"\n      },\n      \"id\": \"<string>\"\n    }\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  \"data\": {\n    \"attributes\": {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"title\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"relationships\": {\n      \"roles\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          }\n        ]\n      }\n    }\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    },
    {
      "name": "Authentication error",
      "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  \"data\": {\n    \"attributes\": {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"title\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"relationships\": {\n      \"roles\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          }\n        ]\n      }\n    }\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\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  \"data\": {\n    \"attributes\": {\n      \"email\": \"<string>\",\n      \"name\": \"<string>\",\n      \"title\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"relationships\": {\n      \"roles\": {\n        \"data\": [\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          },\n          {\n            \"id\": \"<string>\",\n            \"type\": \"roles\"\n          }\n        ]\n      }\n    }\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    }
  ]
}