Chilkat Online Tools

Swift3 / Anypoint Platform APIs / Get all connected apps

Back to Collection Items

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

    let http = CkoHttp()!
    var success: Bool

    let queryParams = CkoJsonObject()!
    queryParams.updateInt("limit", value: 100)
    queryParams.updateInt("offset", value: 0)
    queryParams.update("includeUsage", value: "true")

    // Adds the "Authorization: Bearer {{token}}" header.
    http.authToken = "{{token}}"

    var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://domain.com/accounts/api/connectedApplications", json: queryParams)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -G -d "limit=100"
	-d "offset=0"
	-d "includeUsage=true"
	-H "Authorization: Bearer {{token}}"
https://domain.com/accounts/api/connectedApplications

Postman Collection Item JSON

{
  "name": "Get all connected apps",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/accounts/api/connectedApplications?limit=100&offset=0&includeUsage=true",
      "host": [
        "{{url}}"
      ],
      "path": [
        "accounts",
        "api",
        "connectedApplications"
      ],
      "query": [
        {
          "key": "limit",
          "value": "100"
        },
        {
          "key": "offset",
          "value": "0"
        },
        {
          "key": "includeUsage",
          "value": "true"
        }
      ]
    }
  },
  "response": [
  ]
}