Chilkat Online Tools

PureBasic / Sunshine Conversations API / List Conversations

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    CkHttp::setCkBasicAuth(http, 1)
    CkHttp::setCkLogin(http, "username")
    CkHttp::setCkPassword(http, "password")

    queryParams.i = CkJsonObject::ckCreate()
    If queryParams.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(queryParams,"page[after]","5e1606762556d93e9c176f69")
    CkJsonObject::ckUpdateString(queryParams,"page[before]","5e1606762556d93e9c176f69")
    CkJsonObject::ckUpdateInt(queryParams,"page[size]",10)
    CkJsonObject::ckUpdateString(queryParams,"filter[userId]","incididunt ea proident in sit")
    CkJsonObject::ckUpdateString(queryParams,"filter[userExternalId]","occaecat sed")

    resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://domain.com/v2/apps/{{appId}}/conversations",queryParams)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(queryParams)
        ProcedureReturn
    EndIf

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttpResponse::ckGetBodySb(resp,sbResponseBody)

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    respStatusCode.i = CkHttpResponse::ckStatusCode(resp)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttpResponse::ckHeader(resp)
        Debug "Failed."
        CkHttpResponse::ckDispose(resp)

        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(queryParams)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    CkHttpResponse::ckDispose(resp)

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

    ; {
    ;   "conversations": [
    ;     {
    ;       "id": "c93bb9c14dde8ffb94564eae",
    ;       "type": "personal",
    ;       "activeSwitchboardIntegration": {
    ;         "id": "5ef21b86e933b7355c11c604",
    ;         "name": "bot",
    ;         "integrationId": "5ef21b86e933b7355c11c605",
    ;         "integrationType": "zd:agentWorkspace"
    ;       },
    ;       "pendingSwitchboardIntegration": {
    ;         "id": "5ef21b86e933b7355c11c604",
    ;         "name": "bot",
    ;         "integrationId": "5ef21b86e933b7355c11c605",
    ;         "integrationType": "zd:agentWorkspace"
    ;       },
    ;       "isDefault": false,
    ;       "displayName": "dolo",
    ;       "description": "Conversation between Rogers and Carl.",
    ;       "iconUrl": "https://www.gravatar.com/image.jpg",
    ;       "metadata": {
    ;         "lang": "en-ca"
    ;       },
    ;       "businessLastRead": "2020-06-23T14:33:47.492Z",
    ;       "lastUpdatedAt": "2020-06-26T14:33:47.120Z"
    ;     },
    ;     {
    ;       "id": "c93bb9c14dde8ffb94564eae",
    ;       "type": "personal",
    ;       "activeSwitchboardIntegration": {
    ;         "id": "5ef21b86e933b7355c11c604",
    ;         "name": "bot",
    ;         "integrationId": "5ef21b86e933b7355c11c605",
    ;         "integrationType": "zd:agentWorkspace"
    ;       },
    ;       "pendingSwitchboardIntegration": {
    ;         "id": "5ef21b86e933b7355c11c604",
    ;         "name": "bot",
    ;         "integrationId": "5ef21b86e933b7355c11c605",
    ;         "integrationType": "zd:agentWorkspace"
    ;       },
    ;       "isDefault": false,
    ;       "displayName": "ut s",
    ;       "description": "Conversation between Rogers and Carl.",
    ;       "iconUrl": "https://www.gravatar.com/image.jpg",
    ;       "metadata": {
    ;         "lang": "en-ca"
    ;       },
    ;       "businessLastRead": "2020-06-23T14:33:47.492Z",
    ;       "lastUpdatedAt": "2020-06-26T14:33:47.120Z"
    ;     }
    ;   ],
    ;   "meta": {
    ;     "hasMore": true,
    ;     "afterCursor": "55c8d9758590aa1900b9b9f6",
    ;     "beforeCursor": "55c8d9758590aa1900b9b9f6"
    ;   },
    ;   "links": {
    ;     "prev": "https://api.smooch.io/v2/apps?page[before]=fcafad804c39a39648004af9",
    ;     "next": "https://api.smooch.io/v2/apps?page[after]=5ea868f862cdd24abf010b38"
    ;   }
    ; }

    ; Sample code for parsing the JSON response...
    ; Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    id.s
    v_type.s
    Id.s
    Name.s
    IntegrationId.s
    IntegrationType.s
    pendingSwitchboardIntegrationId.s
    pendingSwitchboardIntegrationName.s
    pendingSwitchboardIntegrationIntegrationId.s
    pendingSwitchboardIntegrationIntegrationType.s
    isDefault.i
    displayName.s
    description.s
    iconUrl.s
    Lang.s
    businessLastRead.s
    lastUpdatedAt.s

    HasMore.i = CkJsonObject::ckBoolOf(jResp,"meta.hasMore")
    AfterCursor.s = CkJsonObject::ckStringOf(jResp,"meta.afterCursor")
    BeforeCursor.s = CkJsonObject::ckStringOf(jResp,"meta.beforeCursor")
    Prev.s = CkJsonObject::ckStringOf(jResp,"links.prev")
    v_Next.s = CkJsonObject::ckStringOf(jResp,"links.next")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jResp,"conversations")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        id = CkJsonObject::ckStringOf(jResp,"conversations[i].id")
        v_type = CkJsonObject::ckStringOf(jResp,"conversations[i].type")
        Id = CkJsonObject::ckStringOf(jResp,"conversations[i].activeSwitchboardIntegration.id")
        Name = CkJsonObject::ckStringOf(jResp,"conversations[i].activeSwitchboardIntegration.name")
        IntegrationId = CkJsonObject::ckStringOf(jResp,"conversations[i].activeSwitchboardIntegration.integrationId")
        IntegrationType = CkJsonObject::ckStringOf(jResp,"conversations[i].activeSwitchboardIntegration.integrationType")
        pendingSwitchboardIntegrationId = CkJsonObject::ckStringOf(jResp,"conversations[i].pendingSwitchboardIntegration.id")
        pendingSwitchboardIntegrationName = CkJsonObject::ckStringOf(jResp,"conversations[i].pendingSwitchboardIntegration.name")
        pendingSwitchboardIntegrationIntegrationId = CkJsonObject::ckStringOf(jResp,"conversations[i].pendingSwitchboardIntegration.integrationId")
        pendingSwitchboardIntegrationIntegrationType = CkJsonObject::ckStringOf(jResp,"conversations[i].pendingSwitchboardIntegration.integrationType")
        isDefault = CkJsonObject::ckBoolOf(jResp,"conversations[i].isDefault")
        displayName = CkJsonObject::ckStringOf(jResp,"conversations[i].displayName")
        description = CkJsonObject::ckStringOf(jResp,"conversations[i].description")
        iconUrl = CkJsonObject::ckStringOf(jResp,"conversations[i].iconUrl")
        Lang = CkJsonObject::ckStringOf(jResp,"conversations[i].metadata.lang")
        businessLastRead = CkJsonObject::ckStringOf(jResp,"conversations[i].businessLastRead")
        lastUpdatedAt = CkJsonObject::ckStringOf(jResp,"conversations[i].lastUpdatedAt")
        i = i + 1
    Wend


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(queryParams)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure

Curl Command

curl -G -d "page[after]=5e1606762556d93e9c176f69"
	-d "page[before]=5e1606762556d93e9c176f69"
	-d "page[size]=10"
	-d "filter[userId]=incididunt%20ea%20proident%20in%20sit"
	-d "filter[userExternalId]=occaecat%20sed"
	-u 'username:password'
https://domain.com/v2/apps/{{appId}}/conversations

Postman Collection Item JSON

{
  "name": "List Conversations",
  "_postman_id": "90efc8c1-d5bf-4533-9c7e-89e994d67a11",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/v2/apps/{{appId}}/conversations?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[userId]=incididunt ea proident in sit&filter[userExternalId]=occaecat sed",
      "host": [
        "{{url}}"
      ],
      "path": [
        "v2",
        "apps",
        "{{appId}}",
        "conversations"
      ],
      "query": [
        {
          "key": "page[after]",
          "value": "5e1606762556d93e9c176f69",
          "description": "Contains parameters for applying cursor pagination."
        },
        {
          "key": "page[before]",
          "value": "5e1606762556d93e9c176f69",
          "description": "Contains parameters for applying cursor pagination."
        },
        {
          "key": "page[size]",
          "value": "10",
          "description": "Contains parameters for applying cursor pagination."
        },
        {
          "key": "filter[userId]",
          "value": "incididunt ea proident in sit",
          "description": "(Required) Contains parameters for filtering the results."
        },
        {
          "key": "filter[userExternalId]",
          "value": "occaecat sed",
          "description": "(Required) Contains parameters for filtering the results."
        }
      ]
    },
    "description": "Lists all conversations that a user is part of. This API is paginated through [cursor pagination](#section/Introduction/API-pagination-and-records-limits).\n```shell\n/v2/apps/:appId/conversations?filter[userId]=42589ad070d43be9b00ff7e5\n```\n"
  },
  "response": [
    {
      "id": "1cb978d1-7d9f-46e3-832b-bf0866adfc55",
      "name": "Ok",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: bearer",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "Bearer <token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/v2/apps/:appId/conversations?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[userId]=incididunt ea proident in sit&filter[userExternalId]=occaecat sed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps",
            ":appId",
            "conversations"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            },
            {
              "key": "filter[userId]",
              "value": "incididunt ea proident in sit"
            },
            {
              "key": "filter[userExternalId]",
              "value": "occaecat sed"
            }
          ],
          "variable": [
            {
              "key": "appId"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"conversations\": [\n  {\n   \"id\": \"c93bb9c14dde8ffb94564eae\",\n   \"type\": \"personal\",\n   \"activeSwitchboardIntegration\": {\n    \"id\": \"5ef21b86e933b7355c11c604\",\n    \"name\": \"bot\",\n    \"integrationId\": \"5ef21b86e933b7355c11c605\",\n    \"integrationType\": \"zd:agentWorkspace\"\n   },\n   \"pendingSwitchboardIntegration\": {\n    \"id\": \"5ef21b86e933b7355c11c604\",\n    \"name\": \"bot\",\n    \"integrationId\": \"5ef21b86e933b7355c11c605\",\n    \"integrationType\": \"zd:agentWorkspace\"\n   },\n   \"isDefault\": false,\n   \"displayName\": \"dolo\",\n   \"description\": \"Conversation between Rogers and Carl.\",\n   \"iconUrl\": \"https://www.gravatar.com/image.jpg\",\n   \"metadata\": {\n    \"lang\": \"en-ca\"\n   },\n   \"businessLastRead\": \"2020-06-23T14:33:47.492Z\",\n   \"lastUpdatedAt\": \"2020-06-26T14:33:47.120Z\"\n  },\n  {\n   \"id\": \"c93bb9c14dde8ffb94564eae\",\n   \"type\": \"personal\",\n   \"activeSwitchboardIntegration\": {\n    \"id\": \"5ef21b86e933b7355c11c604\",\n    \"name\": \"bot\",\n    \"integrationId\": \"5ef21b86e933b7355c11c605\",\n    \"integrationType\": \"zd:agentWorkspace\"\n   },\n   \"pendingSwitchboardIntegration\": {\n    \"id\": \"5ef21b86e933b7355c11c604\",\n    \"name\": \"bot\",\n    \"integrationId\": \"5ef21b86e933b7355c11c605\",\n    \"integrationType\": \"zd:agentWorkspace\"\n   },\n   \"isDefault\": false,\n   \"displayName\": \"ut s\",\n   \"description\": \"Conversation between Rogers and Carl.\",\n   \"iconUrl\": \"https://www.gravatar.com/image.jpg\",\n   \"metadata\": {\n    \"lang\": \"en-ca\"\n   },\n   \"businessLastRead\": \"2020-06-23T14:33:47.492Z\",\n   \"lastUpdatedAt\": \"2020-06-26T14:33:47.120Z\"\n  }\n ],\n \"meta\": {\n  \"hasMore\": true,\n  \"afterCursor\": \"55c8d9758590aa1900b9b9f6\",\n  \"beforeCursor\": \"55c8d9758590aa1900b9b9f6\"\n },\n \"links\": {\n  \"prev\": \"https://api.smooch.io/v2/apps?page[before]=fcafad804c39a39648004af9\",\n  \"next\": \"https://api.smooch.io/v2/apps?page[after]=5ea868f862cdd24abf010b38\"\n }\n}"
    },
    {
      "id": "6626d909-8a14-4f6b-ad72-53f862c5f11e",
      "name": "User not found",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: bearer",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "Bearer <token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/v2/apps/:appId/conversations?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[userId]=incididunt ea proident in sit&filter[userExternalId]=occaecat sed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps",
            ":appId",
            "conversations"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            },
            {
              "key": "filter[userId]",
              "value": "incididunt ea proident in sit"
            },
            {
              "key": "filter[userExternalId]",
              "value": "occaecat sed"
            }
          ],
          "variable": [
            {
              "key": "appId"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}