200
Successful operation.
application/json
{
"type": "object",
"properties": {
"revoked": {
"type": "boolean"
}
},
"required": [
"revoked"
]
}Revoke an owned client
/api/oauth/clientsrevokeAccountOAuthClientUse one listed account-session, scoped OAuth, or partner credential alternative. Account tokens retain the approving account’s authority. Cookie-authenticated writes require same-origin authorization. Alternatives are OR; schemes in one alternative are AND.
CanonicalSessionThis operation has no path, query, or header parameters.
Required request body.
application/json
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
]
}Successful operation.
application/json
{
"type": "object",
"properties": {
"revoked": {
"type": "boolean"
}
},
"required": [
"revoked"
]
}Authorization failure; consent_required requires explicit reacceptance.
application/json
{
"$ref": "#/components/schemas/AccountOAuthError",
"type": "object",
"properties": {
"error": {
"type": "string"
},
"error_description": {
"type": "string"
}
},
"required": [
"error"
]
}{
"revoked": false
}Read the response status and stable error code. See errors and rate limits for recovery. Refresh the resource before resolving a state or digest conflict.
Retry-After when present. Back off on retryable server failures.