curl --request POST \
--url https://api.hyperline.co/v1/oauth/revoke \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"client_secret": "<string>",
"token": "<string>"
}'
Revoke a refresh token. Once revoked the token can not be used anymore.
curl --request POST \
--url https://api.hyperline.co/v1/oauth/revoke \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"client_secret": "<string>",
"token": "<string>"
}'
Token revoked
Was this page helpful?