List all cloud apps
GET/v1/cloudapps
List all cloud apps for a tenant
Responses
- 200
- 500
Cloud apps retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
cloud_apps
object[]
app_id string
client_id string
client_secret string
expires_at string
is_active boolean
name string
properties
object
property name* any
provider string
redirect_uri string
success boolean
{
"cloud_apps": [
{
"app_id": "string",
"client_id": "string",
"client_secret": "string",
"expires_at": "string",
"is_active": true,
"name": "string",
"properties": {},
"provider": "string",
"redirect_uri": "string"
}
],
"success": true
}
Internal server error - failed to list cloud apps
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": true
}
Loading...