Get a cloud app
GET/v1/cloudapps/:appID
Get a cloud app for a tenant
Request
Path Parameters
appID stringrequired
Cloud app ID
Responses
- 200
- 404
- 500
Cloud app retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
cloud_app
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_app": {
"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
}
Cloud app not found
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": true
}
Internal server error - failed to get cloud app
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": true
}
Loading...