Chilkat Online Tools

unicodeCpp / Support API / Open Ticket in Agent's Browser

Back to Collection Items

#include <CkHttpW.h>
#include <CkHttpResponseW.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.h>

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

    CkHttpW http;
    bool success;

    http.put_BasicAuth(true);
    http.put_Login(L"login");
    http.put_Password(L"password");

    http.SetRequestHeader(L"Accept",L"application/json");

    CkHttpResponseW *resp = http.QuickRequest(L"POST",L"https://example.zendesk.com/api/v2/channels/voice/agents/:agent_id/tickets/:ticket_id/display");
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    CkStringBuilderW sbResponseBody;
    resp->GetBodySb(sbResponseBody);

    CkJsonObjectW jResp;
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

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

    int respStatusCode = resp->get_StatusCode();
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",resp->header());
        wprintf(L"Failed.\n");
        delete resp;
        return;
    }

    delete resp;
    }

Curl Command

curl  -u login:password -X POST
	-H "Accept: application/json"
https://example.zendesk.com/api/v2/channels/voice/agents/:agent_id/tickets/:ticket_id/display

Postman Collection Item JSON

{
  "name": "Open Ticket in Agent's Browser",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/channels/voice/agents/:agent_id/tickets/:ticket_id/display",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "channels",
        "voice",
        "agents",
        ":agent_id",
        "tickets",
        ":ticket_id",
        "display"
      ],
      "variable": [
        {
          "key": "agent_id",
          "value": "<integer>"
        },
        {
          "key": "ticket_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "Allows you to instruct an agent's browser to open a ticket.\n\nWhen the message is successfully delivered to an agent's browser:\n\n```http\nStatus: 200 OK\n```\n\nWhen `agent_id` or `ticket_id` is invalid:\n\n```http\nStatus: 404 Not Found\n```\n\n#### Allowed For\n* Agents"
  },
  "response": [
    {
      "name": "Successful response",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/channels/voice/agents/:agent_id/tickets/:ticket_id/display",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "channels",
            "voice",
            "agents",
            ":agent_id",
            "tickets",
            ":ticket_id",
            "display"
          ],
          "variable": [
            {
              "key": "agent_id"
            },
            {
              "key": "ticket_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "<string>"
    },
    {
      "name": "When the `agent_id` or `ticket_id` is invalid",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/channels/voice/agents/:agent_id/tickets/:ticket_id/display",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "channels",
            "voice",
            "agents",
            ":agent_id",
            "tickets",
            ":ticket_id",
            "display"
          ],
          "variable": [
            {
              "key": "agent_id"
            },
            {
              "key": "ticket_id"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "<string>"
    }
  ]
}