Update a cloud app
PUT/v1/cloudapps/:appID
Update a cloud app for a tenant
Request
Path Parameters
appID stringrequired
Cloud app ID
- application/json
Body
required
Cloud app update request
client_id string
client_secret string
name string
properties
object
property name* any
redirect_uri string
Responses
- 200
- 400
- 404
- 500
Cloud app updated 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
}
Bad request - invalid input parameters or validation failed
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "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 update cloud app
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": true
}
Loading...