Last modified:2026-09-22 14:24:55
x-numu-scope:client_credentials
The app revokes one of its tokens. Answers 200 for an unknown token
(RFC 7009), so the endpoint cannot probe for valid tokens.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/jsonRequired
curl --location 'https://numueg.app/api/v1/oauth/revoke' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "string",
"client_secret": "string",
"token": "string"
}'
Response Response Example
{
"success": true,
"data": {
"property1": "string",
"property2": "string"
},
"message": "string"
}
Modified at 2026-09-22 14:24:55