API ReferenceapiidentityPOST /v1/oauth/revoke

POST /v1/oauth/revoke

Service: identity · operationId: (none)

Token revocation endpoint (RFC 7009)

Required scopes

(no scope declared — review service config)

Responses

200 Token revoked (or was already invalid)

401 Invalid client credentials

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "OAuth 2 error code (RFC 6749 §5.2)"
    },
    "error_description": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "error_uri": {
      "type": "string",
      "description": "URI for more info"
    }
  },
  "required": [
    "error",
    "error_description"
  ]
}

Example

curl -X POST https://identity.platform.loop.health/v1/oauth/revoke \
  -H "Authorization: Bearer $ACCESS_TOKEN"