Android / Support API / Show Compliance Deletion Statuses
Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
http.put_BasicAuth(true);
http.put_Login("login");
http.put_Password("password");
CkJsonObject queryParams = new CkJsonObject();
queryParams.UpdateString("application","<string>");
http.SetRequestHeader("Accept","application/json");
CkHttpResponse resp = http.QuickRequestParams("GET","https://example.zendesk.com/api/v2/users/:user_id/compliance_deletion_statuses",queryParams);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
CkStringBuilder sbResponseBody = new CkStringBuilder();
resp.GetBodySb(sbResponseBody);
CkJsonObject jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
Log.i(TAG, "Response Body:");
Log.i(TAG, jResp.emit());
int respStatusCode = resp.get_StatusCode();
Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
if (respStatusCode >= 400) {
Log.i(TAG, "Response Header:");
Log.i(TAG, resp.header());
Log.i(TAG, "Failed.");
return;
}
// 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
String action;
String application;
String account_subdomain;
String executer_id;
String user_id;
String created_at;
int i = 0;
int count_i = jResp.SizeOfArray("compliance_deletion_statuses");
while (i < count_i) {
jResp.put_I(i);
action = jResp.stringOf("compliance_deletion_statuses[i].action");
application = jResp.stringOf("compliance_deletion_statuses[i].application");
account_subdomain = jResp.stringOf("compliance_deletion_statuses[i].account_subdomain");
executer_id = jResp.stringOf("compliance_deletion_statuses[i].executer_id");
user_id = jResp.stringOf("compliance_deletion_statuses[i].user_id");
created_at = jResp.stringOf("compliance_deletion_statuses[i].created_at");
i = i + 1;
}
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
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}"
}
]
}