Chilkat Online Tools

unicodeCpp / Support API / Show Custom Role

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/custom_roles/:custom_role_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)

    // {
    //   "custom_role": {
    //     "name": "<string>",
    //     "role_type": "<integer>",
    //     "configuration": {
    //       "assign_tickets_to_any_group": "<boolean>",
    //       "chat_access": "<boolean>",
    //       "end_user_list_access": "<string>",
    //       "end_user_profile_access": "<string>",
    //       "explore_access": "<string>",
    //       "forum_access": "<string>",
    //       "forum_access_restricted_content": "<boolean>",
    //       "group_access": "<boolean>",
    //       "light_agent": "<boolean>",
    //       "macro_access": "<string>",
    //       "manage_business_rules": "<boolean>",
    //       "manage_contextual_workspaces": "<boolean>",
    //       "manage_dynamic_content": "<boolean>",
    //       "manage_extensions_and_channels": "<boolean>",
    //       "manage_facebook": "<boolean>",
    //       "manage_organization_fields": "<boolean>",
    //       "manage_ticket_fields": "<boolean>",
    //       "manage_ticket_forms": "<boolean>",
    //       "manage_user_fields": "<boolean>",
    //       "moderate_forums": "<boolean>",
    //       "organization_editing": "<boolean>",
    //       "organization_notes_editing": "<boolean>",
    //       "report_access": "<string>",
    //       "side_conversation_create": "<boolean>",
    //       "ticket_access": "<string>",
    //       "ticket_comment_access": "<string>",
    //       "ticket_deletion": "<boolean>",
    //       "ticket_editing": "<boolean>",
    //       "ticket_merge": "<boolean>",
    //       "ticket_tag_editing": "<boolean>",
    //       "twitter_search_access": "<boolean>",
    //       "user_view_access": "<string>",
    //       "view_access": "<string>",
    //       "view_deleted_tickets": "<boolean>",
    //       "voice_access": "<boolean>",
    //       "voice_dashboard_access": "<boolean>"
    //     },
    //     "created_at": "<dateTime>",
    //     "description": "<string>",
    //     "id": "<integer>",
    //     "team_member_count": "<integer>",
    //     "updated_at": "<dateTime>"
    //   }
    // }

    // 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 *Name = jResp.stringOf(L"custom_role.name");
    const wchar_t *Role_type = jResp.stringOf(L"custom_role.role_type");
    const wchar_t *Assign_tickets_to_any_group = jResp.stringOf(L"custom_role.configuration.assign_tickets_to_any_group");
    const wchar_t *Chat_access = jResp.stringOf(L"custom_role.configuration.chat_access");
    const wchar_t *End_user_list_access = jResp.stringOf(L"custom_role.configuration.end_user_list_access");
    const wchar_t *End_user_profile_access = jResp.stringOf(L"custom_role.configuration.end_user_profile_access");
    const wchar_t *Explore_access = jResp.stringOf(L"custom_role.configuration.explore_access");
    const wchar_t *Forum_access = jResp.stringOf(L"custom_role.configuration.forum_access");
    const wchar_t *Forum_access_restricted_content = jResp.stringOf(L"custom_role.configuration.forum_access_restricted_content");
    const wchar_t *Group_access = jResp.stringOf(L"custom_role.configuration.group_access");
    const wchar_t *Light_agent = jResp.stringOf(L"custom_role.configuration.light_agent");
    const wchar_t *Macro_access = jResp.stringOf(L"custom_role.configuration.macro_access");
    const wchar_t *Manage_business_rules = jResp.stringOf(L"custom_role.configuration.manage_business_rules");
    const wchar_t *Manage_contextual_workspaces = jResp.stringOf(L"custom_role.configuration.manage_contextual_workspaces");
    const wchar_t *Manage_dynamic_content = jResp.stringOf(L"custom_role.configuration.manage_dynamic_content");
    const wchar_t *Manage_extensions_and_channels = jResp.stringOf(L"custom_role.configuration.manage_extensions_and_channels");
    const wchar_t *Manage_facebook = jResp.stringOf(L"custom_role.configuration.manage_facebook");
    const wchar_t *Manage_organization_fields = jResp.stringOf(L"custom_role.configuration.manage_organization_fields");
    const wchar_t *Manage_ticket_fields = jResp.stringOf(L"custom_role.configuration.manage_ticket_fields");
    const wchar_t *Manage_ticket_forms = jResp.stringOf(L"custom_role.configuration.manage_ticket_forms");
    const wchar_t *Manage_user_fields = jResp.stringOf(L"custom_role.configuration.manage_user_fields");
    const wchar_t *Moderate_forums = jResp.stringOf(L"custom_role.configuration.moderate_forums");
    const wchar_t *Organization_editing = jResp.stringOf(L"custom_role.configuration.organization_editing");
    const wchar_t *Organization_notes_editing = jResp.stringOf(L"custom_role.configuration.organization_notes_editing");
    const wchar_t *Report_access = jResp.stringOf(L"custom_role.configuration.report_access");
    const wchar_t *Side_conversation_create = jResp.stringOf(L"custom_role.configuration.side_conversation_create");
    const wchar_t *Ticket_access = jResp.stringOf(L"custom_role.configuration.ticket_access");
    const wchar_t *Ticket_comment_access = jResp.stringOf(L"custom_role.configuration.ticket_comment_access");
    const wchar_t *Ticket_deletion = jResp.stringOf(L"custom_role.configuration.ticket_deletion");
    const wchar_t *Ticket_editing = jResp.stringOf(L"custom_role.configuration.ticket_editing");
    const wchar_t *Ticket_merge = jResp.stringOf(L"custom_role.configuration.ticket_merge");
    const wchar_t *Ticket_tag_editing = jResp.stringOf(L"custom_role.configuration.ticket_tag_editing");
    const wchar_t *Twitter_search_access = jResp.stringOf(L"custom_role.configuration.twitter_search_access");
    const wchar_t *User_view_access = jResp.stringOf(L"custom_role.configuration.user_view_access");
    const wchar_t *View_access = jResp.stringOf(L"custom_role.configuration.view_access");
    const wchar_t *View_deleted_tickets = jResp.stringOf(L"custom_role.configuration.view_deleted_tickets");
    const wchar_t *Voice_access = jResp.stringOf(L"custom_role.configuration.voice_access");
    const wchar_t *Voice_dashboard_access = jResp.stringOf(L"custom_role.configuration.voice_dashboard_access");
    const wchar_t *Created_at = jResp.stringOf(L"custom_role.created_at");
    const wchar_t *Description = jResp.stringOf(L"custom_role.description");
    const wchar_t *Id = jResp.stringOf(L"custom_role.id");
    const wchar_t *Team_member_count = jResp.stringOf(L"custom_role.team_member_count");
    const wchar_t *Updated_at = jResp.stringOf(L"custom_role.updated_at");
    }

Curl Command

curl  -u login:password -X GET
	-H "Accept: application/json"
https://example.zendesk.com/api/v2/custom_roles/:custom_role_id

Postman Collection Item JSON

{
  "name": "Show Custom Role",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/custom_roles/:custom_role_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "custom_roles",
        ":custom_role_id"
      ],
      "variable": [
        {
          "key": "custom_role_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "#### Availability\n\n* Accounts on the Enterprise plan or above\n\n#### Allowed for\n\n* Administrators\n* Agents with the `manage_roles` permission\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/custom_roles/:custom_role_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "custom_roles",
            ":custom_role_id"
          ],
          "variable": [
            {
              "key": "custom_role_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"custom_role\": {\n    \"name\": \"<string>\",\n    \"role_type\": \"<integer>\",\n    \"configuration\": {\n      \"assign_tickets_to_any_group\": \"<boolean>\",\n      \"chat_access\": \"<boolean>\",\n      \"end_user_list_access\": \"<string>\",\n      \"end_user_profile_access\": \"<string>\",\n      \"explore_access\": \"<string>\",\n      \"forum_access\": \"<string>\",\n      \"forum_access_restricted_content\": \"<boolean>\",\n      \"group_access\": \"<boolean>\",\n      \"light_agent\": \"<boolean>\",\n      \"macro_access\": \"<string>\",\n      \"manage_business_rules\": \"<boolean>\",\n      \"manage_contextual_workspaces\": \"<boolean>\",\n      \"manage_dynamic_content\": \"<boolean>\",\n      \"manage_extensions_and_channels\": \"<boolean>\",\n      \"manage_facebook\": \"<boolean>\",\n      \"manage_organization_fields\": \"<boolean>\",\n      \"manage_ticket_fields\": \"<boolean>\",\n      \"manage_ticket_forms\": \"<boolean>\",\n      \"manage_user_fields\": \"<boolean>\",\n      \"moderate_forums\": \"<boolean>\",\n      \"organization_editing\": \"<boolean>\",\n      \"organization_notes_editing\": \"<boolean>\",\n      \"report_access\": \"<string>\",\n      \"side_conversation_create\": \"<boolean>\",\n      \"ticket_access\": \"<string>\",\n      \"ticket_comment_access\": \"<string>\",\n      \"ticket_deletion\": \"<boolean>\",\n      \"ticket_editing\": \"<boolean>\",\n      \"ticket_merge\": \"<boolean>\",\n      \"ticket_tag_editing\": \"<boolean>\",\n      \"twitter_search_access\": \"<boolean>\",\n      \"user_view_access\": \"<string>\",\n      \"view_access\": \"<string>\",\n      \"view_deleted_tickets\": \"<boolean>\",\n      \"voice_access\": \"<boolean>\",\n      \"voice_dashboard_access\": \"<boolean>\"\n    },\n    \"created_at\": \"<dateTime>\",\n    \"description\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"team_member_count\": \"<integer>\",\n    \"updated_at\": \"<dateTime>\"\n  }\n}"
    }
  ]
}