Chilkat Online Tools

PureBasic / Sunshine Conversations API / List Participants

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)

    resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://domain.com/v2/apps/{{appId}}/conversations/{{conversationId}}/participants",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)

    ; {
    ;   "participants": [
    ;     {
    ;       "id": "c93bb9c14dde8ffb94564eae",
    ;       "userId": "42589ad070d43be9b00ff7e5",
    ;       "unreadCount": 0,
    ;       "clientAssociations": [
    ;         {
    ;           "type": "telegram",
    ;           "clientId": "42589ad070d43be9b00ff7e5"
    ;         },
    ;         {
    ;           "type": "telegram",
    ;           "clientId": "42589ad070d43be9b00ff7e5"
    ;         }
    ;       ],
    ;       "userExternalId": "your-own-id",
    ;       "lastRead": "2019-01-14T18:55:12.515Z"
    ;     },
    ;     {
    ;       "id": "c93bb9c14dde8ffb94564eae",
    ;       "userId": "42589ad070d43be9b00ff7e5",
    ;       "unreadCount": 0,
    ;       "clientAssociations": [
    ;         {
    ;           "type": "telegram",
    ;           "clientId": "42589ad070d43be9b00ff7e5"
    ;         },
    ;         {
    ;           "type": "telegram",
    ;           "clientId": "42589ad070d43be9b00ff7e5"
    ;         }
    ;       ],
    ;       "userExternalId": "your-own-id",
    ;       "lastRead": "2019-01-14T18:55:12.515Z"
    ;     }
    ;   ],
    ;   "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
    userId.s
    unreadCount.i
    userExternalId.s
    lastRead.s
    j.i
    count_j.i
    v_type.s
    clientId.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,"participants")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        id = CkJsonObject::ckStringOf(jResp,"participants[i].id")
        userId = CkJsonObject::ckStringOf(jResp,"participants[i].userId")
        unreadCount = CkJsonObject::ckIntOf(jResp,"participants[i].unreadCount")
        userExternalId = CkJsonObject::ckStringOf(jResp,"participants[i].userExternalId")
        lastRead = CkJsonObject::ckStringOf(jResp,"participants[i].lastRead")
        j = 0
        count_j = CkJsonObject::ckSizeOfArray(jResp,"participants[i].clientAssociations")
        While j < count_j
            CkJsonObject::setCkJ(jResp, j)
            v_type = CkJsonObject::ckStringOf(jResp,"participants[i].clientAssociations[j].type")
            clientId = CkJsonObject::ckStringOf(jResp,"participants[i].clientAssociations[j].clientId")
            j = j + 1
        Wend
        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"
	-u 'username:password'
https://domain.com/v2/apps/{{appId}}/conversations/{{conversationId}}/participants

Postman Collection Item JSON

{
  "name": "List Participants",
  "_postman_id": "4993ad39-b009-4428-a2ad-a05921581fba",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/v2/apps/{{appId}}/conversations/{{conversationId}}/participants?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10",
      "host": [
        "{{url}}"
      ],
      "path": [
        "v2",
        "apps",
        "{{appId}}",
        "conversations",
        "{{conversationId}}",
        "participants"
      ],
      "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."
        }
      ]
    },
    "description": "Lists all the participants of a particular conversation. This API is paginated through [cursor pagination](#section/Introduction/API-pagination-and-records-limits).\n\n```shell\n/v2/apps/:appId/conversations/:conversationId/participants?page[before]=26508c10541a4b0ff472e5e2\n```\n"
  },
  "response": [
    {
      "id": "0162eeaf-e260-4fc2-98c6-4f9ff97448ec",
      "name": "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/:conversationId/participants?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps",
            ":appId",
            "conversations",
            ":conversationId",
            "participants"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            }
          ],
          "variable": [
            {
              "key": "appId"
            },
            {
              "key": "conversationId"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "id": "e81409d2-ae22-409f-9a28-cb54df48f2f0",
      "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/:conversationId/participants?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps",
            ":appId",
            "conversations",
            ":conversationId",
            "participants"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            }
          ],
          "variable": [
            {
              "key": "appId"
            },
            {
              "key": "conversationId"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"participants\": [\n  {\n   \"id\": \"c93bb9c14dde8ffb94564eae\",\n   \"userId\": \"42589ad070d43be9b00ff7e5\",\n   \"unreadCount\": 0,\n   \"clientAssociations\": [\n    {\n     \"type\": \"telegram\",\n     \"clientId\": \"42589ad070d43be9b00ff7e5\"\n    },\n    {\n     \"type\": \"telegram\",\n     \"clientId\": \"42589ad070d43be9b00ff7e5\"\n    }\n   ],\n   \"userExternalId\": \"your-own-id\",\n   \"lastRead\": \"2019-01-14T18:55:12.515Z\"\n  },\n  {\n   \"id\": \"c93bb9c14dde8ffb94564eae\",\n   \"userId\": \"42589ad070d43be9b00ff7e5\",\n   \"unreadCount\": 0,\n   \"clientAssociations\": [\n    {\n     \"type\": \"telegram\",\n     \"clientId\": \"42589ad070d43be9b00ff7e5\"\n    },\n    {\n     \"type\": \"telegram\",\n     \"clientId\": \"42589ad070d43be9b00ff7e5\"\n    }\n   ],\n   \"userExternalId\": \"your-own-id\",\n   \"lastRead\": \"2019-01-14T18:55:12.515Z\"\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}"
    }
  ]
}