Chilkat Online Tools

unicodeC / Support API / Update a Brand

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkStringBuilderW sbRequestBody;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *content_type;
    const wchar_t *content_url;
    const wchar_t *deleted;
    const wchar_t *file_name;
    const wchar_t *height;
    const wchar_t *id;
    const wchar_t *inline;
    const wchar_t *malware_access_override;
    const wchar_t *malware_scan_result;
    const wchar_t *mapped_content_url;
    const wchar_t *size;
    const wchar_t *url;
    const wchar_t *width;
    const wchar_t *Name;
    const wchar_t *Subdomain;
    const wchar_t *Active;
    const wchar_t *Brand_url;
    const wchar_t *Created_at;
    const wchar_t *Default;
    const wchar_t *Has_help_center;
    const wchar_t *Help_center_state;
    const wchar_t *Host_mapping;
    const wchar_t *Id;
    const wchar_t *Is_deleted;
    const wchar_t *Content_type;
    const wchar_t *Content_url;
    const wchar_t *Deleted;
    const wchar_t *File_name;
    const wchar_t *Height;
    const wchar_t *LogoId;
    const wchar_t *Inline;
    const wchar_t *Malware_access_override;
    const wchar_t *Malware_scan_result;
    const wchar_t *Mapped_content_url;
    const wchar_t *Size;
    const wchar_t *v_Url;
    const wchar_t *Width;
    const wchar_t *Signature_template;
    const wchar_t *Ticket_form_ids;
    const wchar_t *Updated_at;
    const wchar_t *brandUrl;
    int i;
    int count_i;

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

    http = CkHttpW_Create();

    CkHttpW_putBasicAuth(http,TRUE);
    CkHttpW_putLogin(http,L"login");
    CkHttpW_putPassword(http,L"password");

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "brand": {
    //     "name": "<string>",
    //     "subdomain": "<string>",
    //     "active": "<boolean>",
    //     "brand_url": "<string>",
    //     "created_at": "<dateTime>",
    //     "default": "<boolean>",
    //     "has_help_center": "<boolean>",
    //     "help_center_state": "enabled",
    //     "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>"
    //   }
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"brand.name",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.subdomain",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.active",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.brand_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.created_at",L"<dateTime>");
    CkJsonObjectW_UpdateString(json,L"brand.default",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.has_help_center",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.help_center_state",L"enabled");
    CkJsonObjectW_UpdateString(json,L"brand.host_mapping",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.id",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.is_deleted",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.content_type",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.content_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.deleted",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.file_name",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.height",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.id",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.inline",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.malware_access_override",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.malware_scan_result",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.mapped_content_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.size",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.width",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].content_type",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].content_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].deleted",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].file_name",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].height",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].id",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].inline",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].malware_access_override",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].malware_scan_result",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].mapped_content_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].size",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[0].width",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].content_type",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].content_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].deleted",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].file_name",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].height",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].id",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].inline",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].malware_access_override",L"<boolean>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].malware_scan_result",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].mapped_content_url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].size",L"<integer>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].url",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.logo.thumbnails[1].width",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.signature_template",L"<string>");
    CkJsonObjectW_UpdateString(json,L"brand.ticket_form_ids",L"<array>");
    CkJsonObjectW_UpdateString(json,L"brand.updated_at",L"<dateTime>");
    CkJsonObjectW_UpdateString(json,L"brand.url",L"<string>");

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    sbRequestBody = CkStringBuilderW_Create();
    CkJsonObjectW_EmitSb(json,sbRequestBody);

    resp = CkHttpW_PTextSb(http,L"PUT",L"https://example.zendesk.com/api/v2/brands/:brand_id",sbRequestBody,L"utf-8",L"application/json",FALSE,FALSE);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbRequestBody);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbRequestBody);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

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

    // {
    //   "brand": {
    //     "name": "<string>",
    //     "subdomain": "<string>",
    //     "active": "<boolean>",
    //     "brand_url": "<string>",
    //     "created_at": "<dateTime>",
    //     "default": "<boolean>",
    //     "has_help_center": "<boolean>",
    //     "help_center_state": "enabled",
    //     "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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    Name = CkJsonObjectW_stringOf(jResp,L"brand.name");
    Subdomain = CkJsonObjectW_stringOf(jResp,L"brand.subdomain");
    Active = CkJsonObjectW_stringOf(jResp,L"brand.active");
    Brand_url = CkJsonObjectW_stringOf(jResp,L"brand.brand_url");
    Created_at = CkJsonObjectW_stringOf(jResp,L"brand.created_at");
    Default = CkJsonObjectW_stringOf(jResp,L"brand.default");
    Has_help_center = CkJsonObjectW_stringOf(jResp,L"brand.has_help_center");
    Help_center_state = CkJsonObjectW_stringOf(jResp,L"brand.help_center_state");
    Host_mapping = CkJsonObjectW_stringOf(jResp,L"brand.host_mapping");
    Id = CkJsonObjectW_stringOf(jResp,L"brand.id");
    Is_deleted = CkJsonObjectW_stringOf(jResp,L"brand.is_deleted");
    Content_type = CkJsonObjectW_stringOf(jResp,L"brand.logo.content_type");
    Content_url = CkJsonObjectW_stringOf(jResp,L"brand.logo.content_url");
    Deleted = CkJsonObjectW_stringOf(jResp,L"brand.logo.deleted");
    File_name = CkJsonObjectW_stringOf(jResp,L"brand.logo.file_name");
    Height = CkJsonObjectW_stringOf(jResp,L"brand.logo.height");
    LogoId = CkJsonObjectW_stringOf(jResp,L"brand.logo.id");
    Inline = CkJsonObjectW_stringOf(jResp,L"brand.logo.inline");
    Malware_access_override = CkJsonObjectW_stringOf(jResp,L"brand.logo.malware_access_override");
    Malware_scan_result = CkJsonObjectW_stringOf(jResp,L"brand.logo.malware_scan_result");
    Mapped_content_url = CkJsonObjectW_stringOf(jResp,L"brand.logo.mapped_content_url");
    Size = CkJsonObjectW_stringOf(jResp,L"brand.logo.size");
    v_Url = CkJsonObjectW_stringOf(jResp,L"brand.logo.url");
    Width = CkJsonObjectW_stringOf(jResp,L"brand.logo.width");
    Signature_template = CkJsonObjectW_stringOf(jResp,L"brand.signature_template");
    Ticket_form_ids = CkJsonObjectW_stringOf(jResp,L"brand.ticket_form_ids");
    Updated_at = CkJsonObjectW_stringOf(jResp,L"brand.updated_at");
    brandUrl = CkJsonObjectW_stringOf(jResp,L"brand.url");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"brand.logo.thumbnails");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        content_type = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].content_type");
        content_url = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].content_url");
        deleted = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].deleted");
        file_name = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].file_name");
        height = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].height");
        id = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].id");
        inline = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].inline");
        malware_access_override = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].malware_access_override");
        malware_scan_result = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].malware_scan_result");
        mapped_content_url = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].mapped_content_url");
        size = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].size");
        url = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].url");
        width = CkJsonObjectW_stringOf(jResp,L"brand.logo.thumbnails[i].width");
        i = i + 1;
    }



    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbRequestBody);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

Curl Command

curl  -u login:password -X PUT
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "brand": {
    "name": "<string>",
    "subdomain": "<string>",
    "active": "<boolean>",
    "brand_url": "<string>",
    "created_at": "<dateTime>",
    "default": "<boolean>",
    "has_help_center": "<boolean>",
    "help_center_state": "enabled",
    "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>"
  }
}'
https://example.zendesk.com/api/v2/brands/:brand_id

Postman Collection Item JSON

{
  "name": "Update a Brand",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"brand\": {\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\": \"enabled\",\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}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v2/brands/:brand_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "brands",
        ":brand_id"
      ],
      "variable": [
        {
          "key": "brand_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "Returns an updated brand.\n\n#### Allowed for\n* Admins\n\n#### Updating a Brand's Image\nA brand image can be updated by uploading a local file using the update brand endpoint. See the **Using curl** sections below for more information."
  },
  "response": [
    {
      "name": "Successful response",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"brand\": {\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\": \"enabled\",\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}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/brands/:brand_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "brands",
            ":brand_id"
          ],
          "variable": [
            {
              "key": "brand_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"brand\": {\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\": \"enabled\",\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}"
    }
  ]
}