Chilkat Online Tools

TCL / Support API / Show Compliance Deletion Statuses

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

CkHttp_put_BasicAuth $http 1
CkHttp_put_Login $http "login"
CkHttp_put_Password $http "password"

set queryParams [new_CkJsonObject]

CkJsonObject_UpdateString $queryParams "application" "<string>"

CkHttp_SetRequestHeader $http "Accept" "application/json"

# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://example.zendesk.com/api/v2/users/:user_id/compliance_deletion_statuses" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $queryParams
    exit
}

set sbResponseBody [new_CkStringBuilder]

CkHttpResponse_GetBodySb $resp $sbResponseBody

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0

puts "Response Body:"
puts [CkJsonObject_emit $jResp]

set respStatusCode [CkHttpResponse_get_StatusCode $resp]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
    puts "Response Header:"
    puts [CkHttpResponse_header $resp]
    puts "Failed."
    delete_CkHttpResponse $resp

    delete_CkHttp $http
    delete_CkJsonObject $queryParams
    delete_CkStringBuilder $sbResponseBody
    delete_CkJsonObject $jResp
    exit
}

delete_CkHttpResponse $resp

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

# {
#   "compliance_deletion_statuses": [
#     {
#       "action": "<string>",
#       "application": "<string>",
#       "account_subdomain": "<string>",
#       "executer_id": "<integer>",
#       "user_id": "<integer>",
#       "created_at": "<string>"
#     },
#     {
#       "action": "<string>",
#       "application": "<string>",
#       "account_subdomain": "<string>",
#       "executer_id": "<integer>",
#       "user_id": "<integer>",
#       "created_at": "<string>"
#     }
#   ]
# }

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

set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "compliance_deletion_statuses"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set action [CkJsonObject_stringOf $jResp "compliance_deletion_statuses[i].action"]
    set application [CkJsonObject_stringOf $jResp "compliance_deletion_statuses[i].application"]
    set account_subdomain [CkJsonObject_stringOf $jResp "compliance_deletion_statuses[i].account_subdomain"]
    set executer_id [CkJsonObject_stringOf $jResp "compliance_deletion_statuses[i].executer_id"]
    set user_id [CkJsonObject_stringOf $jResp "compliance_deletion_statuses[i].user_id"]
    set created_at [CkJsonObject_stringOf $jResp "compliance_deletion_statuses[i].created_at"]
    set i [expr $i + 1]
}

delete_CkHttp $http
delete_CkJsonObject $queryParams
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp

Curl Command

curl  -u login:password -G -d "application=%3Cstring%3E"
	-H "Accept: application/json"
https://example.zendesk.com/api/v2/users/:user_id/compliance_deletion_statuses

Postman Collection Item JSON

{
  "name": "Show Compliance Deletion Statuses",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/users/:user_id/compliance_deletion_statuses?application=<string>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "users",
        ":user_id",
        "compliance_deletion_statuses"
      ],
      "query": [
        {
          "key": "application",
          "value": "<string>",
          "description": "Area of compliance"
        }
      ],
      "variable": [
        {
          "key": "user_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "Returns the GDPR status for each user per area of compliance. A Zendesk area of compliance is typically a product like \"support/explore\" but can be more fine-grained for areas within the product lines.\n\nIf the user is not in the account, the request returns a 404 status.\n\n```http\nStatus: 404\n{\n  \"error\":\"RecordNotFound\",\n  \"description\":\"Not found\"\n}\n```\n\n#### Allowed For\n\n* Agents, with restrictions\n"
  },
  "response": [
    {
      "name": "Success response",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/:user_id/compliance_deletion_statuses?application=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            ":user_id",
            "compliance_deletion_statuses"
          ],
          "query": [
            {
              "key": "application",
              "value": "<string>",
              "description": "Area of compliance"
            }
          ],
          "variable": [
            {
              "key": "user_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"compliance_deletion_statuses\": [\n    {\n      \"action\": \"<string>\",\n      \"application\": \"<string>\",\n      \"account_subdomain\": \"<string>\",\n      \"executer_id\": \"<integer>\",\n      \"user_id\": \"<integer>\",\n      \"created_at\": \"<string>\"\n    },\n    {\n      \"action\": \"<string>\",\n      \"application\": \"<string>\",\n      \"account_subdomain\": \"<string>\",\n      \"executer_id\": \"<integer>\",\n      \"user_id\": \"<integer>\",\n      \"created_at\": \"<string>\"\n    }\n  ]\n}"
    }
  ]
}