Android / Support API / Show Ticket
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");
http.SetRequestHeader("Accept","application/json");
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://example.zendesk.com/api/v2/tickets/:ticket_id",sbResponseBody);
if (success == false) {
Log.i(TAG, http.lastErrorText());
return;
}
CkJsonObject jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
Log.i(TAG, "Response Body:");
Log.i(TAG, jResp.emit());
int respStatusCode = http.get_LastStatus();
Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
if (respStatusCode >= 400) {
Log.i(TAG, "Response Header:");
Log.i(TAG, http.lastHeader());
Log.i(TAG, "Failed.");
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
String email;
String name;
String Requester_id = jResp.stringOf("ticket.requester_id");
String Allow_attachments = jResp.stringOf("ticket.allow_attachments");
String Allow_channelback = jResp.stringOf("ticket.allow_channelback");
String Assignee_email = jResp.stringOf("ticket.assignee_email");
String Assignee_id = jResp.stringOf("ticket.assignee_id");
String Attribute_value_ids = jResp.stringOf("ticket.attribute_value_ids");
String Brand_id = jResp.stringOf("ticket.brand_id");
String Collaborator_ids = jResp.stringOf("ticket.collaborator_ids");
String Created_at = jResp.stringOf("ticket.created_at");
String Custom_fields = jResp.stringOf("ticket.custom_fields");
String Custom_status_id = jResp.stringOf("ticket.custom_status_id");
String Description = jResp.stringOf("ticket.description");
String Due_at = jResp.stringOf("ticket.due_at");
String Email_cc_ids = jResp.stringOf("ticket.email_cc_ids");
String External_id = jResp.stringOf("ticket.external_id");
String Follower_ids = jResp.stringOf("ticket.follower_ids");
String Followup_ids = jResp.stringOf("ticket.followup_ids");
String Forum_topic_id = jResp.stringOf("ticket.forum_topic_id");
String From_messaging_channel = jResp.stringOf("ticket.from_messaging_channel");
String Group_id = jResp.stringOf("ticket.group_id");
String Has_incidents = jResp.stringOf("ticket.has_incidents");
String Id = jResp.stringOf("ticket.id");
String Is_public = jResp.stringOf("ticket.is_public");
String Macro_id = jResp.stringOf("ticket.macro_id");
String Macro_ids = jResp.stringOf("ticket.macro_ids");
String Organization_id = jResp.stringOf("ticket.organization_id");
String Priority = jResp.stringOf("ticket.priority");
String Problem_id = jResp.stringOf("ticket.problem_id");
String Raw_subject = jResp.stringOf("ticket.raw_subject");
String Recipient = jResp.stringOf("ticket.recipient");
String Safe_update = jResp.stringOf("ticket.safe_update");
String In_11 = jResp.stringOf("ticket.satisfaction_rating.in_11");
String Sharing_agreement_ids = jResp.stringOf("ticket.sharing_agreement_ids");
String Status = jResp.stringOf("ticket.status");
String Subject = jResp.stringOf("ticket.subject");
String Submitter_id = jResp.stringOf("ticket.submitter_id");
String Tags = jResp.stringOf("ticket.tags");
String Ticket_form_id = jResp.stringOf("ticket.ticket_form_id");
String v_Type = jResp.stringOf("ticket.type");
String Updated_at = jResp.stringOf("ticket.updated_at");
String Updated_stamp = jResp.stringOf("ticket.updated_stamp");
String v_Url = jResp.stringOf("ticket.url");
String Channel = jResp.stringOf("ticket.via.channel");
String Ut__a = jResp.stringOf("ticket.via.source.Ut__a");
int Dolored2b = jResp.IntOf("ticket.via.source.dolored2b");
boolean Mollit1a6 = jResp.BoolOf("ticket.via.source.mollit1a6");
String Via_followup_source_id = jResp.stringOf("ticket.via_followup_source_id");
String Via_id = jResp.stringOf("ticket.via_id");
int i = 0;
int count_i = jResp.SizeOfArray("ticket.collaborators");
while (i < count_i) {
jResp.put_I(i);
email = jResp.stringOf("ticket.collaborators[i].email");
name = jResp.stringOf("ticket.collaborators[i].name");
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 -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}"
}
]
}