<< Click to Display Table of Contents >> Navigation: API > apps > list |
Description
Lists organization's published apps.
Syntax
https://api.cameyo.com/apps/list?clientId=...&clientSecret=...&filter=...
Optional parameters
•filter:
ouser: filters apps which are available to a specific user, by user name (email). Example:
▪filter=user:someone@company.com: returns only apps available to this specific user.
Return
200: success. In this case, a JSON array is returned with the different apps.
400: invalid parameters.
403: authentication failed or insufficient permissions.
Response examples
{
"items":[
{
"id":243227206258,
"created":"2019-07-15T14:52:36.103",
"enabled":true,
"sessions":403,
"name":"App1",
"cluster":"32147628-6242-43ca-9309-116330f30633",
"powertags": null,
"showInPortal":true
},
{
"id":49432111746,
"created":"2019-08-13T18:07:17.193",
"enabled":true,
"sessions":14,
"name":"App2",
"cluster":"545545a5-901b-4b49-b7dc-98683864bf45",
"powertags": null,
"showInPortal":false
},
{
"id":123966027253,
"created":"2019-11-05T09:42:48.043",
"enabled":true,
"sessions":11,
"name":"App3",
"cluster":"5673c40a-3ef4-46e1-af5d-fa026b1117e7",
"powertags": null,
"showInPortal":true
}
]
}