Chilkat Online Tools

PowerBuilder / Sunshine Conversations API / List Apps

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Id
string ls_DisplayName
integer li_ConversationRetentionSeconds
integer li_MaskCreditCardNumbers
integer li_UseAnimalNames
integer li_EchoPostback
integer li_IgnoreAutoConversationStart
integer li_MultiConvoEnabled
string ls_AttachmentsAccess
integer li_AttachmentsTokenExpirationSeconds
string ls_Lang
integer li_HasMore
string ls_AfterCursor
string ls_BeforeCursor
string ls_Prev
string ls_V_Next
integer i
integer li_Count_i

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.BasicAuth = 1
loo_Http.Login = "username"
loo_Http.Password = "password"

loo_QueryParams = create oleobject
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_QueryParams.UpdateString("page[after]","5e1606762556d93e9c176f69")
loo_QueryParams.UpdateString("page[before]","5e1606762556d93e9c176f69")
loo_QueryParams.UpdateInt("page[size]",10)
loo_QueryParams.UpdateString("filter[serviceAccountId]","laborum consectetur id")

loo_Resp = loo_Http.QuickRequestParams("GET","https://domain.com/v2/apps",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_QueryParams
    return
end if

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_QueryParams
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

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

// {
//   "apps": [
//     {
//       "id": "5d8cff3cd55b040010928b5b",
//       "displayName": "ipsu",
//       "settings": {
//         "conversationRetentionSeconds": 55645305,
//         "maskCreditCardNumbers": true,
//         "useAnimalNames": true,
//         "echoPostback": false,
//         "ignoreAutoConversationStart": false,
//         "multiConvoEnabled": false,
//         "attachmentsAccess": "public",
//         "attachmentsTokenExpirationSeconds": 64028
//       },
//       "metadata": {
//         "lang": "en-ca"
//       }
//     },
//     {
//       "id": "5d8cff3cd55b040010928b5b",
//       "displayName": "Exce",
//       "settings": {
//         "conversationRetentionSeconds": 1491566,
//         "maskCreditCardNumbers": false,
//         "useAnimalNames": true,
//         "echoPostback": true,
//         "ignoreAutoConversationStart": true,
//         "multiConvoEnabled": false,
//         "attachmentsAccess": "public",
//         "attachmentsTokenExpirationSeconds": 64028
//       },
//       "metadata": {
//         "lang": "en-ca"
//       }
//     }
//   ],
//   "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

li_HasMore = loo_JResp.BoolOf("meta.hasMore")
ls_AfterCursor = loo_JResp.StringOf("meta.afterCursor")
ls_BeforeCursor = loo_JResp.StringOf("meta.beforeCursor")
ls_Prev = loo_JResp.StringOf("links.prev")
ls_V_Next = loo_JResp.StringOf("links.next")
i = 0
li_Count_i = loo_JResp.SizeOfArray("apps")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("apps[i].id")
    ls_DisplayName = loo_JResp.StringOf("apps[i].displayName")
    li_ConversationRetentionSeconds = loo_JResp.IntOf("apps[i].settings.conversationRetentionSeconds")
    li_MaskCreditCardNumbers = loo_JResp.BoolOf("apps[i].settings.maskCreditCardNumbers")
    li_UseAnimalNames = loo_JResp.BoolOf("apps[i].settings.useAnimalNames")
    li_EchoPostback = loo_JResp.BoolOf("apps[i].settings.echoPostback")
    li_IgnoreAutoConversationStart = loo_JResp.BoolOf("apps[i].settings.ignoreAutoConversationStart")
    li_MultiConvoEnabled = loo_JResp.BoolOf("apps[i].settings.multiConvoEnabled")
    ls_AttachmentsAccess = loo_JResp.StringOf("apps[i].settings.attachmentsAccess")
    li_AttachmentsTokenExpirationSeconds = loo_JResp.IntOf("apps[i].settings.attachmentsTokenExpirationSeconds")
    ls_Lang = loo_JResp.StringOf("apps[i].metadata.lang")
    i = i + 1
loop


destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -G -d "page[after]=5e1606762556d93e9c176f69"
	-d "page[before]=5e1606762556d93e9c176f69"
	-d "page[size]=10"
	-d "filter[serviceAccountId]=laborum%20consectetur%20id"
	-u 'username:password'
https://domain.com/v2/apps

Postman Collection Item JSON

{
  "name": "List Apps",
  "_postman_id": "9e945a28-9ef0-4a15-92ad-f6b39c1223ce",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/v2/apps?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[serviceAccountId]=laborum consectetur id",
      "host": [
        "{{url}}"
      ],
      "path": [
        "v2",
        "apps"
      ],
      "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[serviceAccountId]",
          "value": "laborum consectetur id",
          "description": "Contains parameters for filtering the results."
        }
      ]
    },
    "description": "Lists all apps 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?page[after]=5e1606762556d93e9c176f69&page[size]=10\n```\n"
  },
  "response": [
    {
      "id": "20d18287-f52c-47f5-b6c5-ff8ecd484eeb",
      "name": "Can supply only one of page[after] or page[before], not both",
      "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?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[serviceAccountId]=laborum consectetur id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            },
            {
              "key": "filter[serviceAccountId]",
              "value": "laborum consectetur id"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "id": "8bc21ad8-9781-42a8-8e87-e25a48c04d58",
      "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?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[serviceAccountId]=laborum consectetur id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            },
            {
              "key": "filter[serviceAccountId]",
              "value": "laborum consectetur id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"apps\": [\n  {\n   \"id\": \"5d8cff3cd55b040010928b5b\",\n   \"displayName\": \"ipsu\",\n   \"settings\": {\n    \"conversationRetentionSeconds\": 55645305,\n    \"maskCreditCardNumbers\": true,\n    \"useAnimalNames\": true,\n    \"echoPostback\": false,\n    \"ignoreAutoConversationStart\": false,\n    \"multiConvoEnabled\": false,\n    \"attachmentsAccess\": \"public\",\n    \"attachmentsTokenExpirationSeconds\": 64028\n   },\n   \"metadata\": {\n    \"lang\": \"en-ca\"\n   }\n  },\n  {\n   \"id\": \"5d8cff3cd55b040010928b5b\",\n   \"displayName\": \"Exce\",\n   \"settings\": {\n    \"conversationRetentionSeconds\": 1491566,\n    \"maskCreditCardNumbers\": false,\n    \"useAnimalNames\": true,\n    \"echoPostback\": true,\n    \"ignoreAutoConversationStart\": true,\n    \"multiConvoEnabled\": false,\n    \"attachmentsAccess\": \"public\",\n    \"attachmentsTokenExpirationSeconds\": 64028\n   },\n   \"metadata\": {\n    \"lang\": \"en-ca\"\n   }\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": "f3936c25-49e4-421f-9fb2-c6b58a66a999",
      "name": "The serviceAccountId provided does not match supplied credentials",
      "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?page[after]=5e1606762556d93e9c176f69&page[before]=5e1606762556d93e9c176f69&page[size]=10&filter[serviceAccountId]=laborum consectetur id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "v2",
            "apps"
          ],
          "query": [
            {
              "key": "page[after]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[before]",
              "value": "5e1606762556d93e9c176f69"
            },
            {
              "key": "page[size]",
              "value": "10"
            },
            {
              "key": "filter[serviceAccountId]",
              "value": "laborum consectetur id"
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}