unicodeCpp / Support API / Show Deleted User
Back to Collection Items
#include <CkHttpW.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
http.put_BasicAuth(true);
http.put_Login(L"login");
http.put_Password(L"password");
http.SetRequestHeader(L"Accept",L"application/json");
CkStringBuilderW sbResponseBody;
success = http.QuickGetSb(L"https://example.zendesk.com/api/v2/deleted_users/:deleted_user_id",sbResponseBody);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
CkJsonObjectW jResp;
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",jResp.emit());
int respStatusCode = http.get_LastStatus();
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",http.lastHeader());
wprintf(L"Failed.\n");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "deleted_user": {
// "id": "<integer>",
// "url": "<string>",
// "name": "<string>",
// "email": "<null>",
// "created_at": "<string>",
// "updated_at": "<string>",
// "time_zone": "<string>",
// "phone": "<string>",
// "shared_phone_number": "<string>",
// "photo": {},
// "locale_id": "<integer>",
// "locale": "<string>",
// "organization_id": "<null>",
// "role": "<string>",
// "active": "<boolean>"
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
const wchar_t *Id = jResp.stringOf(L"deleted_user.id");
const wchar_t *v_Url = jResp.stringOf(L"deleted_user.url");
const wchar_t *Name = jResp.stringOf(L"deleted_user.name");
const wchar_t *v_Email = jResp.stringOf(L"deleted_user.email");
const wchar_t *Created_at = jResp.stringOf(L"deleted_user.created_at");
const wchar_t *Updated_at = jResp.stringOf(L"deleted_user.updated_at");
const wchar_t *Time_zone = jResp.stringOf(L"deleted_user.time_zone");
const wchar_t *Phone = jResp.stringOf(L"deleted_user.phone");
const wchar_t *Shared_phone_number = jResp.stringOf(L"deleted_user.shared_phone_number");
const wchar_t *Locale_id = jResp.stringOf(L"deleted_user.locale_id");
const wchar_t *Locale = jResp.stringOf(L"deleted_user.locale");
const wchar_t *Organization_id = jResp.stringOf(L"deleted_user.organization_id");
const wchar_t *Role = jResp.stringOf(L"deleted_user.role");
const wchar_t *Active = jResp.stringOf(L"deleted_user.active");
}
Curl Command
curl -u login:password -X GET
-H "Accept: application/json"
https://example.zendesk.com/api/v2/deleted_users/:deleted_user_id
Postman Collection Item JSON
{
"name": "Show Deleted User",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/deleted_users/:deleted_user_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"deleted_users",
":deleted_user_id"
],
"variable": [
{
"key": "deleted_user_id",
"value": "<integer>"
}
]
},
"description": "Returns users that have been deleted but not permanently yet. See [Permanently Delete User](#permanently-delete-user).\n\n#### Allowed For:\n\n* Agents\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/deleted_users/:deleted_user_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"deleted_users",
":deleted_user_id"
],
"variable": [
{
"key": "deleted_user_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"deleted_user\": {\n \"id\": \"<integer>\",\n \"url\": \"<string>\",\n \"name\": \"<string>\",\n \"email\": \"<null>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"phone\": \"<string>\",\n \"shared_phone_number\": \"<string>\",\n \"photo\": {},\n \"locale_id\": \"<integer>\",\n \"locale\": \"<string>\",\n \"organization_id\": \"<null>\",\n \"role\": \"<string>\",\n \"active\": \"<boolean>\"\n }\n}"
}
]
}