delphiDll / Support API / Create Ticket Form
Back to Collection Items
var
http: HCkHttp;
success: Boolean;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
aliqua6: PWideChar;
Lorem_d: PWideChar;
mollit_cf: Integer;
ullamco_f7: PWideChar;
consequate_: PWideChar;
consectetur_00: Integer;
laborum50: PWideChar;
irure__c: Boolean;
Excepteur_38: PWideChar;
sunt_8: PWideChar;
nulla_48: PWideChar;
ullamco_f6: PWideChar;
strVal: PWideChar;
Name: PWideChar;
Active: PWideChar;
Created_at: PWideChar;
Default: PWideChar;
Display_name: PWideChar;
End_user_visible: PWideChar;
Id: PWideChar;
In_all_brands: PWideChar;
Position: PWideChar;
Raw_display_name: PWideChar;
Raw_name: PWideChar;
Updated_at: PWideChar;
v_Url: PWideChar;
i: Integer;
count_i: Integer;
begin
// 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');
resp := CkHttp_QuickRequest(http,'POST','https://example.zendesk.com/api/v2/ticket_forms');
if (CkHttp_getLastMethodSuccess(http) = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
sbResponseBody := CkStringBuilder_Create();
CkHttpResponse_GetBodySb(resp,sbResponseBody);
jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));
respStatusCode := CkHttpResponse_getStatusCode(resp);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
begin
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(CkHttpResponse__header(resp));
Memo1.Lines.Add('Failed.');
CkHttpResponse_Dispose(resp);
Exit;
end;
CkHttpResponse_Dispose(resp);
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "ticket_form": {
// "name": "<string>",
// "active": "<boolean>",
// "agent_conditions": [
// {
// "aliqua6": "proident deserunt",
// "Lorem_d": "cillum dolor Excepteur ut",
// "mollit_cf": -33059877,
// "ullamco_f7": "dolore occaeca"
// },
// {
// "consequate_": 29214347.18513973,
// "consectetur_00": 83697330,
// "laborum50": "cillum Ut"
// }
// ],
// "created_at": "<dateTime>",
// "default": "<boolean>",
// "display_name": "<string>",
// "end_user_conditions": [
// {
// "irure__c": false,
// "Excepteur_38": -15203265.607602075,
// "sunt_8": "culpa laboris Ut"
// },
// {
// "nulla_48": "quis esse",
// "ullamco_f6": -25516091.19614251
// }
// ],
// "end_user_visible": "<boolean>",
// "id": "<integer>",
// "in_all_brands": "<boolean>",
// "position": "<integer>",
// "raw_display_name": "<string>",
// "raw_name": "<string>",
// "restricted_brand_ids": [
// "<integer>",
// "<integer>"
// ],
// "ticket_field_ids": [
// "<integer>",
// "<integer>"
// ],
// "updated_at": "<dateTime>",
// "url": "<string>"
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Name := CkJsonObject__stringOf(jResp,'ticket_form.name');
Active := CkJsonObject__stringOf(jResp,'ticket_form.active');
Created_at := CkJsonObject__stringOf(jResp,'ticket_form.created_at');
Default := CkJsonObject__stringOf(jResp,'ticket_form.default');
Display_name := CkJsonObject__stringOf(jResp,'ticket_form.display_name');
End_user_visible := CkJsonObject__stringOf(jResp,'ticket_form.end_user_visible');
Id := CkJsonObject__stringOf(jResp,'ticket_form.id');
In_all_brands := CkJsonObject__stringOf(jResp,'ticket_form.in_all_brands');
Position := CkJsonObject__stringOf(jResp,'ticket_form.position');
Raw_display_name := CkJsonObject__stringOf(jResp,'ticket_form.raw_display_name');
Raw_name := CkJsonObject__stringOf(jResp,'ticket_form.raw_name');
Updated_at := CkJsonObject__stringOf(jResp,'ticket_form.updated_at');
v_Url := CkJsonObject__stringOf(jResp,'ticket_form.url');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'ticket_form.agent_conditions');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
aliqua6 := CkJsonObject__stringOf(jResp,'ticket_form.agent_conditions[i].aliqua6');
Lorem_d := CkJsonObject__stringOf(jResp,'ticket_form.agent_conditions[i].Lorem_d');
mollit_cf := CkJsonObject_IntOf(jResp,'ticket_form.agent_conditions[i].mollit_cf');
ullamco_f7 := CkJsonObject__stringOf(jResp,'ticket_form.agent_conditions[i].ullamco_f7');
consequate_ := CkJsonObject__stringOf(jResp,'ticket_form.agent_conditions[i].consequate_');
consectetur_00 := CkJsonObject_IntOf(jResp,'ticket_form.agent_conditions[i].consectetur_00');
laborum50 := CkJsonObject__stringOf(jResp,'ticket_form.agent_conditions[i].laborum50');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'ticket_form.end_user_conditions');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
irure__c := CkJsonObject_BoolOf(jResp,'ticket_form.end_user_conditions[i].irure__c');
Excepteur_38 := CkJsonObject__stringOf(jResp,'ticket_form.end_user_conditions[i].Excepteur_38');
sunt_8 := CkJsonObject__stringOf(jResp,'ticket_form.end_user_conditions[i].sunt_8');
nulla_48 := CkJsonObject__stringOf(jResp,'ticket_form.end_user_conditions[i].nulla_48');
ullamco_f6 := CkJsonObject__stringOf(jResp,'ticket_form.end_user_conditions[i].ullamco_f6');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'ticket_form.restricted_brand_ids');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'ticket_form.restricted_brand_ids[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'ticket_form.ticket_field_ids');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'ticket_form.ticket_field_ids[i]');
i := i + 1;
end;
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
Curl Command
curl -u login:password -X POST
-H "Accept: application/json"
https://example.zendesk.com/api/v2/ticket_forms
Postman Collection Item JSON
{
"name": "Create Ticket Form",
"request": {
"method": "POST",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/ticket_forms",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"ticket_forms"
]
},
"description": "#### Allowed For\n\n* Admins\n"
},
"response": [
{
"name": "Created response",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/ticket_forms",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"ticket_forms"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"ticket_form\": {\n \"name\": \"<string>\",\n \"active\": \"<boolean>\",\n \"agent_conditions\": [\n {\n \"aliqua6\": \"proident deserunt\",\n \"Lorem_d\": \"cillum dolor Excepteur ut\",\n \"mollit_cf\": -33059877,\n \"ullamco_f7\": \"dolore occaeca\"\n },\n {\n \"consequate_\": 29214347.18513973,\n \"consectetur_00\": 83697330,\n \"laborum50\": \"cillum Ut\"\n }\n ],\n \"created_at\": \"<dateTime>\",\n \"default\": \"<boolean>\",\n \"display_name\": \"<string>\",\n \"end_user_conditions\": [\n {\n \"irure__c\": false,\n \"Excepteur_38\": -15203265.607602075,\n \"sunt_8\": \"culpa laboris Ut\"\n },\n {\n \"nulla_48\": \"quis esse\",\n \"ullamco_f6\": -25516091.19614251\n }\n ],\n \"end_user_visible\": \"<boolean>\",\n \"id\": \"<integer>\",\n \"in_all_brands\": \"<boolean>\",\n \"position\": \"<integer>\",\n \"raw_display_name\": \"<string>\",\n \"raw_name\": \"<string>\",\n \"restricted_brand_ids\": [\n \"<integer>\",\n \"<integer>\"\n ],\n \"ticket_field_ids\": [\n \"<integer>\",\n \"<integer>\"\n ],\n \"updated_at\": \"<dateTime>\",\n \"url\": \"<string>\"\n }\n}"
}
]
}