Chilkat Online Tools

delphiDll / Support API / List Brands

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
name: PWideChar;
subdomain: PWideChar;
active: PWideChar;
brand_url: PWideChar;
created_at: PWideChar;
default: PWideChar;
has_help_center: PWideChar;
help_center_state: PWideChar;
host_mapping: PWideChar;
id: PWideChar;
is_deleted: PWideChar;
Content_type: PWideChar;
Content_url: PWideChar;
Deleted: PWideChar;
File_name: PWideChar;
Height: PWideChar;
Id: PWideChar;
Inline: PWideChar;
Malware_access_override: PWideChar;
Malware_scan_result: PWideChar;
Mapped_content_url: PWideChar;
Size: PWideChar;
v_Url: PWideChar;
Width: PWideChar;
signature_template: PWideChar;
ticket_form_ids: PWideChar;
updated_at: PWideChar;
url: PWideChar;
j: Integer;
count_j: Integer;
content_type: PWideChar;
content_url: PWideChar;
deleted: PWideChar;
file_name: PWideChar;
height: PWideChar;
inline: PWideChar;
malware_access_override: PWideChar;
malware_scan_result: PWideChar;
mapped_content_url: PWideChar;
size: PWideChar;
width: PWideChar;
count: PWideChar;
next_page: PWideChar;
previous_page: 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');

sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://example.zendesk.com/api/v2/brands',sbResponseBody);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);

Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));

respStatusCode := CkHttp_getLastStatus(http);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttp__lastHeader(http));
    Memo1.Lines.Add('Failed.');
    Exit;
  end;

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

// {
//   "count": "<integer>",
//   "next_page": "<string>",
//   "previous_page": "<string>",
//   "brands": [
//     {
//       "name": "<string>",
//       "subdomain": "<string>",
//       "active": "<boolean>",
//       "brand_url": "<string>",
//       "created_at": "<dateTime>",
//       "default": "<boolean>",
//       "has_help_center": "<boolean>",
//       "help_center_state": "restricted",
//       "host_mapping": "<string>",
//       "id": "<integer>",
//       "is_deleted": "<boolean>",
//       "logo": {
//         "content_type": "<string>",
//         "content_url": "<string>",
//         "deleted": "<boolean>",
//         "file_name": "<string>",
//         "height": "<string>",
//         "id": "<integer>",
//         "inline": "<boolean>",
//         "malware_access_override": "<boolean>",
//         "malware_scan_result": "<string>",
//         "mapped_content_url": "<string>",
//         "size": "<integer>",
//         "url": "<string>",
//         "width": "<string>",
//         "thumbnails": [
//           {
//             "content_type": "<string>",
//             "content_url": "<string>",
//             "deleted": "<boolean>",
//             "file_name": "<string>",
//             "height": "<string>",
//             "id": "<integer>",
//             "inline": "<boolean>",
//             "malware_access_override": "<boolean>",
//             "malware_scan_result": "<string>",
//             "mapped_content_url": "<string>",
//             "size": "<integer>",
//             "url": "<string>",
//             "width": "<string>"
//           },
//           {
//             "content_type": "<string>",
//             "content_url": "<string>",
//             "deleted": "<boolean>",
//             "file_name": "<string>",
//             "height": "<string>",
//             "id": "<integer>",
//             "inline": "<boolean>",
//             "malware_access_override": "<boolean>",
//             "malware_scan_result": "<string>",
//             "mapped_content_url": "<string>",
//             "size": "<integer>",
//             "url": "<string>",
//             "width": "<string>"
//           }
//         ]
//       },
//       "signature_template": "<string>",
//       "ticket_form_ids": "<array>",
//       "updated_at": "<dateTime>",
//       "url": "<string>"
//     },
//     {
//       "name": "<string>",
//       "subdomain": "<string>",
//       "active": "<boolean>",
//       "brand_url": "<string>",
//       "created_at": "<dateTime>",
//       "default": "<boolean>",
//       "has_help_center": "<boolean>",
//       "help_center_state": "restricted",
//       "host_mapping": "<string>",
//       "id": "<integer>",
//       "is_deleted": "<boolean>",
//       "logo": {
//         "content_type": "<string>",
//         "content_url": "<string>",
//         "deleted": "<boolean>",
//         "file_name": "<string>",
//         "height": "<string>",
//         "id": "<integer>",
//         "inline": "<boolean>",
//         "malware_access_override": "<boolean>",
//         "malware_scan_result": "<string>",
//         "mapped_content_url": "<string>",
//         "size": "<integer>",
//         "url": "<string>",
//         "width": "<string>",
//         "thumbnails": [
//           {
//             "content_type": "<string>",
//             "content_url": "<string>",
//             "deleted": "<boolean>",
//             "file_name": "<string>",
//             "height": "<string>",
//             "id": "<integer>",
//             "inline": "<boolean>",
//             "malware_access_override": "<boolean>",
//             "malware_scan_result": "<string>",
//             "mapped_content_url": "<string>",
//             "size": "<integer>",
//             "url": "<string>",
//             "width": "<string>"
//           },
//           {
//             "content_type": "<string>",
//             "content_url": "<string>",
//             "deleted": "<boolean>",
//             "file_name": "<string>",
//             "height": "<string>",
//             "id": "<integer>",
//             "inline": "<boolean>",
//             "malware_access_override": "<boolean>",
//             "malware_scan_result": "<string>",
//             "mapped_content_url": "<string>",
//             "size": "<integer>",
//             "url": "<string>",
//             "width": "<string>"
//           }
//         ]
//       },
//       "signature_template": "<string>",
//       "ticket_form_ids": "<array>",
//       "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

count := CkJsonObject__stringOf(jResp,'count');
next_page := CkJsonObject__stringOf(jResp,'next_page');
previous_page := CkJsonObject__stringOf(jResp,'previous_page');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'brands');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    name := CkJsonObject__stringOf(jResp,'brands[i].name');
    subdomain := CkJsonObject__stringOf(jResp,'brands[i].subdomain');
    active := CkJsonObject__stringOf(jResp,'brands[i].active');
    brand_url := CkJsonObject__stringOf(jResp,'brands[i].brand_url');
    created_at := CkJsonObject__stringOf(jResp,'brands[i].created_at');
    default := CkJsonObject__stringOf(jResp,'brands[i].default');
    has_help_center := CkJsonObject__stringOf(jResp,'brands[i].has_help_center');
    help_center_state := CkJsonObject__stringOf(jResp,'brands[i].help_center_state');
    host_mapping := CkJsonObject__stringOf(jResp,'brands[i].host_mapping');
    id := CkJsonObject__stringOf(jResp,'brands[i].id');
    is_deleted := CkJsonObject__stringOf(jResp,'brands[i].is_deleted');
    Content_type := CkJsonObject__stringOf(jResp,'brands[i].logo.content_type');
    Content_url := CkJsonObject__stringOf(jResp,'brands[i].logo.content_url');
    Deleted := CkJsonObject__stringOf(jResp,'brands[i].logo.deleted');
    File_name := CkJsonObject__stringOf(jResp,'brands[i].logo.file_name');
    Height := CkJsonObject__stringOf(jResp,'brands[i].logo.height');
    Id := CkJsonObject__stringOf(jResp,'brands[i].logo.id');
    Inline := CkJsonObject__stringOf(jResp,'brands[i].logo.inline');
    Malware_access_override := CkJsonObject__stringOf(jResp,'brands[i].logo.malware_access_override');
    Malware_scan_result := CkJsonObject__stringOf(jResp,'brands[i].logo.malware_scan_result');
    Mapped_content_url := CkJsonObject__stringOf(jResp,'brands[i].logo.mapped_content_url');
    Size := CkJsonObject__stringOf(jResp,'brands[i].logo.size');
    v_Url := CkJsonObject__stringOf(jResp,'brands[i].logo.url');
    Width := CkJsonObject__stringOf(jResp,'brands[i].logo.width');
    signature_template := CkJsonObject__stringOf(jResp,'brands[i].signature_template');
    ticket_form_ids := CkJsonObject__stringOf(jResp,'brands[i].ticket_form_ids');
    updated_at := CkJsonObject__stringOf(jResp,'brands[i].updated_at');
    url := CkJsonObject__stringOf(jResp,'brands[i].url');
    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'brands[i].logo.thumbnails');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        content_type := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].content_type');
        content_url := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].content_url');
        deleted := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].deleted');
        file_name := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].file_name');
        height := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].height');
        id := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].id');
        inline := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].inline');
        malware_access_override := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].malware_access_override');
        malware_scan_result := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].malware_scan_result');
        mapped_content_url := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].mapped_content_url');
        size := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].size');
        url := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].url');
        width := CkJsonObject__stringOf(jResp,'brands[i].logo.thumbnails[j].width');
        j := j + 1;
      end;

    i := i + 1;
  end;

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

Postman Collection Item JSON

{
  "name": "List Brands",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/brands",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "brands"
      ]
    },
    "description": "Returns a list of all brands for your account sorted by name.\n\n#### Allowed for\n\n* Admins, Agents"
  },
  "response": [
    {
      "name": "Successful response",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/brands",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "brands"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"count\": \"<integer>\",\n  \"next_page\": \"<string>\",\n  \"previous_page\": \"<string>\",\n  \"brands\": [\n    {\n      \"name\": \"<string>\",\n      \"subdomain\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"brand_url\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"has_help_center\": \"<boolean>\",\n      \"help_center_state\": \"restricted\",\n      \"host_mapping\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"is_deleted\": \"<boolean>\",\n      \"logo\": {\n        \"content_type\": \"<string>\",\n        \"content_url\": \"<string>\",\n        \"deleted\": \"<boolean>\",\n        \"file_name\": \"<string>\",\n        \"height\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"inline\": \"<boolean>\",\n        \"malware_access_override\": \"<boolean>\",\n        \"malware_scan_result\": \"<string>\",\n        \"mapped_content_url\": \"<string>\",\n        \"size\": \"<integer>\",\n        \"url\": \"<string>\",\n        \"width\": \"<string>\",\n        \"thumbnails\": [\n          {\n            \"content_type\": \"<string>\",\n            \"content_url\": \"<string>\",\n            \"deleted\": \"<boolean>\",\n            \"file_name\": \"<string>\",\n            \"height\": \"<string>\",\n            \"id\": \"<integer>\",\n            \"inline\": \"<boolean>\",\n            \"malware_access_override\": \"<boolean>\",\n            \"malware_scan_result\": \"<string>\",\n            \"mapped_content_url\": \"<string>\",\n            \"size\": \"<integer>\",\n            \"url\": \"<string>\",\n            \"width\": \"<string>\"\n          },\n          {\n            \"content_type\": \"<string>\",\n            \"content_url\": \"<string>\",\n            \"deleted\": \"<boolean>\",\n            \"file_name\": \"<string>\",\n            \"height\": \"<string>\",\n            \"id\": \"<integer>\",\n            \"inline\": \"<boolean>\",\n            \"malware_access_override\": \"<boolean>\",\n            \"malware_scan_result\": \"<string>\",\n            \"mapped_content_url\": \"<string>\",\n            \"size\": \"<integer>\",\n            \"url\": \"<string>\",\n            \"width\": \"<string>\"\n          }\n        ]\n      },\n      \"signature_template\": \"<string>\",\n      \"ticket_form_ids\": \"<array>\",\n      \"updated_at\": \"<dateTime>\",\n      \"url\": \"<string>\"\n    },\n    {\n      \"name\": \"<string>\",\n      \"subdomain\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"brand_url\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"has_help_center\": \"<boolean>\",\n      \"help_center_state\": \"restricted\",\n      \"host_mapping\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"is_deleted\": \"<boolean>\",\n      \"logo\": {\n        \"content_type\": \"<string>\",\n        \"content_url\": \"<string>\",\n        \"deleted\": \"<boolean>\",\n        \"file_name\": \"<string>\",\n        \"height\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"inline\": \"<boolean>\",\n        \"malware_access_override\": \"<boolean>\",\n        \"malware_scan_result\": \"<string>\",\n        \"mapped_content_url\": \"<string>\",\n        \"size\": \"<integer>\",\n        \"url\": \"<string>\",\n        \"width\": \"<string>\",\n        \"thumbnails\": [\n          {\n            \"content_type\": \"<string>\",\n            \"content_url\": \"<string>\",\n            \"deleted\": \"<boolean>\",\n            \"file_name\": \"<string>\",\n            \"height\": \"<string>\",\n            \"id\": \"<integer>\",\n            \"inline\": \"<boolean>\",\n            \"malware_access_override\": \"<boolean>\",\n            \"malware_scan_result\": \"<string>\",\n            \"mapped_content_url\": \"<string>\",\n            \"size\": \"<integer>\",\n            \"url\": \"<string>\",\n            \"width\": \"<string>\"\n          },\n          {\n            \"content_type\": \"<string>\",\n            \"content_url\": \"<string>\",\n            \"deleted\": \"<boolean>\",\n            \"file_name\": \"<string>\",\n            \"height\": \"<string>\",\n            \"id\": \"<integer>\",\n            \"inline\": \"<boolean>\",\n            \"malware_access_override\": \"<boolean>\",\n            \"malware_scan_result\": \"<string>\",\n            \"mapped_content_url\": \"<string>\",\n            \"size\": \"<integer>\",\n            \"url\": \"<string>\",\n            \"width\": \"<string>\"\n          }\n        ]\n      },\n      \"signature_template\": \"<string>\",\n      \"ticket_form_ids\": \"<array>\",\n      \"updated_at\": \"<dateTime>\",\n      \"url\": \"<string>\"\n    }\n  ]\n}"
    }
  ]
}