Back to Collection Items
require 'chilkat'
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = Chilkat::CkHttp.new()
queryParams = Chilkat::CkJsonObject.new()
queryParams.UpdateInt("limit",100)
queryParams.UpdateInt("offset",0)
queryParams.UpdateString("includeUsage","true")
# Adds the "Authorization: Bearer {{token}}" header.
http.put_AuthToken("{{token}}")
# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","https://domain.com/accounts/api/connectedApplications",queryParams)
if (http.get_LastMethodSuccess() == false)
print http.lastErrorText() + "\n";
exit
end
print resp.get_StatusCode().to_s() + "\n";
print resp.bodyStr() + "\n";
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": [
]
}