Skip to content

List support operation resources

GET
/api/admin/support-ops/registry
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/api/admin/support-ops/registry \
--header 'Authorization: Bearer <token>'

Return the support operation resource registry, including exposed fields and supported actions.

Support operation resource registry.

Media type application/json
object
resources
required
Array<object>
object
key
additional properties
Example
{
"resources": [
{
"resource": "User",
"min_count": 10,
"max_snapshot_count": 50000,
"fields": {
"status": {
"aggregatable": true,
"sensitive": false
}
},
"actions": [
"suspend"
]
}
]
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}