Revoke O Auth Client
POST /v2/partner/oauth-clients/{id}/revoke
Required scopes
partner:oauth_clients:write
Tokens missing any required scope return 401 scope_missing.
See Auth & Scopes for issuance.
Operation
| Operation ID | revokeOAuthClient |
| Tags | Operations |
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| id * | path | id |
Responses
200
OK
object
| Field | Type | Description |
|---|---|---|
| id * | id | UUID v4. |
| type * | enum (1) | oauth_client |
| team_id * | id | UUID v4. |
| name * | string | |
| client_id * | string | |
| scopes * | string[] | |
| rate_limit_class * | string | |
| is_revoked * | boolean | |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| revoked_at | updated_at | RFC 3339 / ISO 8601 timestamp. |
| last_used_at | updated_at | RFC 3339 / ISO 8601 timestamp. |
Example request
POST https://api.digitalonboarding.com/v2/partner/oauth-clients/{id}/revoke
Authorization: Bearer <partner-token>
Content-Type: application/json
Idempotency-Key: <uuid-v4>
{ /* request body matching schema above */ }