Chilkat Online Tools

Foxpro / Datadog API Collection / Update a user

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loSbRequestBody
LOCAL loResp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcId
LOCAL lcV_type
LOCAL lcAttributesCreated_at
LOCAL lcDescription
LOCAL lcAttributesDisabled
LOCAL lcAttributesModified_at
LOCAL lcAttributesName
LOCAL lcPublic_id
LOCAL lcSharing
LOCAL lcV_Url
LOCAL lcCreated_at
LOCAL lcDisabled
LOCAL lcV_Email
LOCAL lcHandle
LOCAL lcIcon
LOCAL lcModified_at
LOCAL lcName
LOCAL lcService_account
LOCAL lcStatus
LOCAL lcTitle
LOCAL lcVerified
LOCAL lcId
LOCAL lcDataId
LOCAL lcV_Type
LOCAL lcDataType
LOCAL i
LOCAL lnCount_i

* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loHttp = CreateObject('Chilkat_9_5_0.Http')

* 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": {
*       "disabled": "<boolean>",
*       "email": "<string>",
*       "name": "<string>"
*     },
*     "type": "users",
*     "id": "<string>"
*   }
* }

loJson = CreateObject('Chilkat_9_5_0.JsonObject')
loJson.UpdateString("data.attributes.disabled","<boolean>")
loJson.UpdateString("data.attributes.email","<string>")
loJson.UpdateString("data.attributes.name","<string>")
loJson.UpdateString("data.type","users")
loJson.UpdateString("data.id","<string>")

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

loSbRequestBody = CreateObject('Chilkat_9_5_0.StringBuilder')
loJson.EmitSb(loSbRequestBody)

loResp = loHttp.PTextSb("PATCH","https://api.app.ddog-gov.com/api/v2/users/:user_id",loSbRequestBody,"utf-8","application/json",0,0)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loJson
    RELEASE loSbRequestBody
    CANCEL
ENDIF

loSbResponseBody = CreateObject('Chilkat_9_5_0.StringBuilder')
loResp.GetBodySb(loSbResponseBody)

loJResp = CreateObject('Chilkat_9_5_0.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loResp.Header
    ? "Failed."
    RELEASE loResp
    RELEASE loHttp
    RELEASE loJson
    RELEASE loSbRequestBody
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

RELEASE loResp

* 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

lcCreated_at = loJResp.StringOf("data.attributes.created_at")
lcDisabled = loJResp.StringOf("data.attributes.disabled")
lcV_Email = loJResp.StringOf("data.attributes.email")
lcHandle = loJResp.StringOf("data.attributes.handle")
lcIcon = loJResp.StringOf("data.attributes.icon")
lcModified_at = loJResp.StringOf("data.attributes.modified_at")
lcName = loJResp.StringOf("data.attributes.name")
lcService_account = loJResp.StringOf("data.attributes.service_account")
lcStatus = loJResp.StringOf("data.attributes.status")
lcTitle = loJResp.StringOf("data.attributes.title")
lcVerified = loJResp.StringOf("data.attributes.verified")
lcId = loJResp.StringOf("data.id")
lcDataId = loJResp.StringOf("data.relationships.org.data.id")
lcV_Type = loJResp.StringOf("data.relationships.org.data.type")
lcDataType = loJResp.StringOf("data.type")
i = 0
lnCount_i = loJResp.SizeOfArray("data.relationships.other_orgs.data")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcId = loJResp.StringOf("data.relationships.other_orgs.data[i].id")
    lcV_type = loJResp.StringOf("data.relationships.other_orgs.data[i].type")
    i = i + 1
ENDDO
i = 0
lnCount_i = loJResp.SizeOfArray("data.relationships.other_users.data")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcId = loJResp.StringOf("data.relationships.other_users.data[i].id")
    lcV_type = loJResp.StringOf("data.relationships.other_users.data[i].type")
    i = i + 1
ENDDO
i = 0
lnCount_i = loJResp.SizeOfArray("data.relationships.roles.data")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcId = loJResp.StringOf("data.relationships.roles.data[i].id")
    lcV_type = loJResp.StringOf("data.relationships.roles.data[i].type")
    i = i + 1
ENDDO
i = 0
lnCount_i = loJResp.SizeOfArray("included")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcV_type = loJResp.StringOf("included[i].type")
    lcAttributesCreated_at = loJResp.StringOf("included[i].attributes.created_at")
    lcDescription = loJResp.StringOf("included[i].attributes.description")
    lcAttributesDisabled = loJResp.StringOf("included[i].attributes.disabled")
    lcAttributesModified_at = loJResp.StringOf("included[i].attributes.modified_at")
    lcAttributesName = loJResp.StringOf("included[i].attributes.name")
    lcPublic_id = loJResp.StringOf("included[i].attributes.public_id")
    lcSharing = loJResp.StringOf("included[i].attributes.sharing")
    lcV_Url = loJResp.StringOf("included[i].attributes.url")
    lcId = loJResp.StringOf("included[i].id")
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loJson
RELEASE loSbRequestBody
RELEASE loSbResponseBody
RELEASE loJResp

Curl Command

curl -X PATCH
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "data": {
    "attributes": {
      "disabled": "<boolean>",
      "email": "<string>",
      "name": "<string>"
    },
    "type": "users",
    "id": "<string>"
  }
}'
https://api.app.ddog-gov.com/api/v2/users/:user_id

Postman Collection Item JSON

{
  "name": "Update a user",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"data\": {\n    \"attributes\": {\n      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v2/users/:user_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "users",
        ":user_id"
      ],
      "variable": [
        {
          "key": "user_id",
          "value": "<string>"
        }
      ]
    },
    "description": "Edit a user. Can only be used with an application key belonging\nto an administrator user."
  },
  "response": [
    {
      "name": "OK",
      "originalRequest": {
        "method": "PATCH",
        "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      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id"
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_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": "PATCH",
        "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      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id"
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "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": "PATCH",
        "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      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id"
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "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": "Not found",
      "originalRequest": {
        "method": "PATCH",
        "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      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id"
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    },
    {
      "name": "Unprocessable Entity",
      "originalRequest": {
        "method": "PATCH",
        "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      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id"
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
      "code": 422,
      "_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": "PATCH",
        "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      \"disabled\": \"<boolean>\",\n      \"email\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"type\": \"users\",\n    \"id\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id"
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "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}"
    }
  ]
}