Chilkat Online Tools

C / Support API / Show Ticket

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    const char *email;
    const char *name;
    const char *Requester_id;
    const char *Allow_attachments;
    const char *Allow_channelback;
    const char *Assignee_email;
    const char *Assignee_id;
    const char *Attribute_value_ids;
    const char *Brand_id;
    const char *Collaborator_ids;
    const char *Created_at;
    const char *Custom_fields;
    const char *Custom_status_id;
    const char *Description;
    const char *Due_at;
    const char *Email_cc_ids;
    const char *External_id;
    const char *Follower_ids;
    const char *Followup_ids;
    const char *Forum_topic_id;
    const char *From_messaging_channel;
    const char *Group_id;
    const char *Has_incidents;
    const char *Id;
    const char *Is_public;
    const char *Macro_id;
    const char *Macro_ids;
    const char *Organization_id;
    const char *Priority;
    const char *Problem_id;
    const char *Raw_subject;
    const char *Recipient;
    const char *Safe_update;
    const char *In_11;
    const char *Sharing_agreement_ids;
    const char *Status;
    const char *Subject;
    const char *Submitter_id;
    const char *Tags;
    const char *Ticket_form_id;
    const char *v_Type;
    const char *Updated_at;
    const char *Updated_stamp;
    const char *v_Url;
    const char *Channel;
    const char *Ut__a;
    int Dolored2b;
    BOOL Mollit1a6;
    const char *Via_followup_source_id;
    const char *Via_id;
    int i;
    int count_i;

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

    http = CkHttp_Create();

    CkHttp_putBasicAuth(http,TRUE);
    CkHttp_putLogin(http,"login");
    CkHttp_putPassword(http,"password");

    CkHttp_SetRequestHeader(http,"Accept","application/json");

    sbResponseBody = CkStringBuilder_Create();
    success = CkHttp_QuickGetSb(http,"https://example.zendesk.com/api/v2/tickets/:ticket_id",sbResponseBody);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);
    CkJsonObject_putEmitCompact(jResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(jResp));

    respStatusCode = CkHttp_getLastStatus(http);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttp_lastHeader(http));
        printf("Failed.\n");
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(jResp);
        return;
    }

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

    // {
    //   "ticket": {
    //     "requester_id": "<integer>",
    //     "allow_attachments": "<boolean>",
    //     "allow_channelback": "<boolean>",
    //     "assignee_email": "<string>",
    //     "assignee_id": "<integer>",
    //     "attribute_value_ids": "<array>",
    //     "brand_id": "<integer>",
    //     "collaborator_ids": "<array>",
    //     "collaborators": [
    //       {
    //         "email": "<email>",
    //         "name": "<string>"
    //       },
    //       {
    //         "email": "<email>",
    //         "name": "<string>"
    //       }
    //     ],
    //     "comment": {},
    //     "created_at": "<dateTime>",
    //     "custom_fields": "<array>",
    //     "custom_status_id": "<integer>",
    //     "description": "<string>",
    //     "due_at": "<dateTime>",
    //     "email_cc_ids": "<array>",
    //     "email_ccs": {},
    //     "external_id": "<string>",
    //     "follower_ids": "<array>",
    //     "followers": {},
    //     "followup_ids": "<array>",
    //     "forum_topic_id": "<integer>",
    //     "from_messaging_channel": "<boolean>",
    //     "group_id": "<integer>",
    //     "has_incidents": "<boolean>",
    //     "id": "<integer>",
    //     "is_public": "<boolean>",
    //     "macro_id": "<integer>",
    //     "macro_ids": "<array>",
    //     "metadata": {},
    //     "organization_id": "<integer>",
    //     "priority": "normal",
    //     "problem_id": "<integer>",
    //     "raw_subject": "<string>",
    //     "recipient": "<string>",
    //     "requester": {},
    //     "safe_update": "<boolean>",
    //     "satisfaction_rating": {
    //       "in_11": -9796534.714120895
    //     },
    //     "sharing_agreement_ids": "<array>",
    //     "status": "hold",
    //     "subject": "<string>",
    //     "submitter_id": "<integer>",
    //     "tags": "<array>",
    //     "ticket_form_id": "<integer>",
    //     "type": "question",
    //     "updated_at": "<dateTime>",
    //     "updated_stamp": "<string>",
    //     "url": "<string>",
    //     "via": {
    //       "channel": "<string>",
    //       "source": {
    //         "Ut__a": -44750185.46031158,
    //         "dolored2b": 8252599,
    //         "mollit1a6": true
    //       }
    //     },
    //     "via_followup_source_id": "<integer>",
    //     "via_id": "<integer>",
    //     "voice_comment": {}
    //   }
    // }

    // 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.

    Requester_id = CkJsonObject_stringOf(jResp,"ticket.requester_id");
    Allow_attachments = CkJsonObject_stringOf(jResp,"ticket.allow_attachments");
    Allow_channelback = CkJsonObject_stringOf(jResp,"ticket.allow_channelback");
    Assignee_email = CkJsonObject_stringOf(jResp,"ticket.assignee_email");
    Assignee_id = CkJsonObject_stringOf(jResp,"ticket.assignee_id");
    Attribute_value_ids = CkJsonObject_stringOf(jResp,"ticket.attribute_value_ids");
    Brand_id = CkJsonObject_stringOf(jResp,"ticket.brand_id");
    Collaborator_ids = CkJsonObject_stringOf(jResp,"ticket.collaborator_ids");
    Created_at = CkJsonObject_stringOf(jResp,"ticket.created_at");
    Custom_fields = CkJsonObject_stringOf(jResp,"ticket.custom_fields");
    Custom_status_id = CkJsonObject_stringOf(jResp,"ticket.custom_status_id");
    Description = CkJsonObject_stringOf(jResp,"ticket.description");
    Due_at = CkJsonObject_stringOf(jResp,"ticket.due_at");
    Email_cc_ids = CkJsonObject_stringOf(jResp,"ticket.email_cc_ids");
    External_id = CkJsonObject_stringOf(jResp,"ticket.external_id");
    Follower_ids = CkJsonObject_stringOf(jResp,"ticket.follower_ids");
    Followup_ids = CkJsonObject_stringOf(jResp,"ticket.followup_ids");
    Forum_topic_id = CkJsonObject_stringOf(jResp,"ticket.forum_topic_id");
    From_messaging_channel = CkJsonObject_stringOf(jResp,"ticket.from_messaging_channel");
    Group_id = CkJsonObject_stringOf(jResp,"ticket.group_id");
    Has_incidents = CkJsonObject_stringOf(jResp,"ticket.has_incidents");
    Id = CkJsonObject_stringOf(jResp,"ticket.id");
    Is_public = CkJsonObject_stringOf(jResp,"ticket.is_public");
    Macro_id = CkJsonObject_stringOf(jResp,"ticket.macro_id");
    Macro_ids = CkJsonObject_stringOf(jResp,"ticket.macro_ids");
    Organization_id = CkJsonObject_stringOf(jResp,"ticket.organization_id");
    Priority = CkJsonObject_stringOf(jResp,"ticket.priority");
    Problem_id = CkJsonObject_stringOf(jResp,"ticket.problem_id");
    Raw_subject = CkJsonObject_stringOf(jResp,"ticket.raw_subject");
    Recipient = CkJsonObject_stringOf(jResp,"ticket.recipient");
    Safe_update = CkJsonObject_stringOf(jResp,"ticket.safe_update");
    In_11 = CkJsonObject_stringOf(jResp,"ticket.satisfaction_rating.in_11");
    Sharing_agreement_ids = CkJsonObject_stringOf(jResp,"ticket.sharing_agreement_ids");
    Status = CkJsonObject_stringOf(jResp,"ticket.status");
    Subject = CkJsonObject_stringOf(jResp,"ticket.subject");
    Submitter_id = CkJsonObject_stringOf(jResp,"ticket.submitter_id");
    Tags = CkJsonObject_stringOf(jResp,"ticket.tags");
    Ticket_form_id = CkJsonObject_stringOf(jResp,"ticket.ticket_form_id");
    v_Type = CkJsonObject_stringOf(jResp,"ticket.type");
    Updated_at = CkJsonObject_stringOf(jResp,"ticket.updated_at");
    Updated_stamp = CkJsonObject_stringOf(jResp,"ticket.updated_stamp");
    v_Url = CkJsonObject_stringOf(jResp,"ticket.url");
    Channel = CkJsonObject_stringOf(jResp,"ticket.via.channel");
    Ut__a = CkJsonObject_stringOf(jResp,"ticket.via.source.Ut__a");
    Dolored2b = CkJsonObject_IntOf(jResp,"ticket.via.source.dolored2b");
    Mollit1a6 = CkJsonObject_BoolOf(jResp,"ticket.via.source.mollit1a6");
    Via_followup_source_id = CkJsonObject_stringOf(jResp,"ticket.via_followup_source_id");
    Via_id = CkJsonObject_stringOf(jResp,"ticket.via_id");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"ticket.collaborators");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        email = CkJsonObject_stringOf(jResp,"ticket.collaborators[i].email");
        name = CkJsonObject_stringOf(jResp,"ticket.collaborators[i].name");
        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }

Curl Command

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

Postman Collection Item JSON

{
  "name": "Show Ticket",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/tickets/:ticket_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "tickets",
        ":ticket_id"
      ],
      "variable": [
        {
          "key": "ticket_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "Returns a number of ticket properties though not the ticket comments. To get the comments, use [List Comments](/api-reference/ticketing/tickets/ticket_comments/#list-comments)\n\n#### Allowed For\n* Agents"
  },
  "response": [
    {
      "name": "Ticket",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/tickets/:ticket_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "tickets",
            ":ticket_id"
          ],
          "variable": [
            {
              "key": "ticket_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"ticket\": {\n    \"requester_id\": \"<integer>\",\n    \"allow_attachments\": \"<boolean>\",\n    \"allow_channelback\": \"<boolean>\",\n    \"assignee_email\": \"<string>\",\n    \"assignee_id\": \"<integer>\",\n    \"attribute_value_ids\": \"<array>\",\n    \"brand_id\": \"<integer>\",\n    \"collaborator_ids\": \"<array>\",\n    \"collaborators\": [\n      {\n        \"email\": \"<email>\",\n        \"name\": \"<string>\"\n      },\n      {\n        \"email\": \"<email>\",\n        \"name\": \"<string>\"\n      }\n    ],\n    \"comment\": {},\n    \"created_at\": \"<dateTime>\",\n    \"custom_fields\": \"<array>\",\n    \"custom_status_id\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"due_at\": \"<dateTime>\",\n    \"email_cc_ids\": \"<array>\",\n    \"email_ccs\": {},\n    \"external_id\": \"<string>\",\n    \"follower_ids\": \"<array>\",\n    \"followers\": {},\n    \"followup_ids\": \"<array>\",\n    \"forum_topic_id\": \"<integer>\",\n    \"from_messaging_channel\": \"<boolean>\",\n    \"group_id\": \"<integer>\",\n    \"has_incidents\": \"<boolean>\",\n    \"id\": \"<integer>\",\n    \"is_public\": \"<boolean>\",\n    \"macro_id\": \"<integer>\",\n    \"macro_ids\": \"<array>\",\n    \"metadata\": {},\n    \"organization_id\": \"<integer>\",\n    \"priority\": \"normal\",\n    \"problem_id\": \"<integer>\",\n    \"raw_subject\": \"<string>\",\n    \"recipient\": \"<string>\",\n    \"requester\": {},\n    \"safe_update\": \"<boolean>\",\n    \"satisfaction_rating\": {\n      \"in_11\": -9796534.714120895\n    },\n    \"sharing_agreement_ids\": \"<array>\",\n    \"status\": \"hold\",\n    \"subject\": \"<string>\",\n    \"submitter_id\": \"<integer>\",\n    \"tags\": \"<array>\",\n    \"ticket_form_id\": \"<integer>\",\n    \"type\": \"question\",\n    \"updated_at\": \"<dateTime>\",\n    \"updated_stamp\": \"<string>\",\n    \"url\": \"<string>\",\n    \"via\": {\n      \"channel\": \"<string>\",\n      \"source\": {\n        \"Ut__a\": -44750185.46031158,\n        \"dolored2b\": 8252599,\n        \"mollit1a6\": true\n      }\n    },\n    \"via_followup_source_id\": \"<integer>\",\n    \"via_id\": \"<integer>\",\n    \"voice_comment\": {}\n  }\n}"
    }
  ]
}