Skip to content
Insy
For developers
Esc
navigateopen⌘Jpreview

Revoke

POST/oauth/revoke
Request body
requiredapplication/json
client_idstringrequired
client_secretstringrequired
tokenstringrequired
The access or refresh token to revoke.
token_type_hintstring
Hint about which token type is being revoked.
Allowed:access_tokenrefresh_token
Responses
200
Try it
Server
Bodyapplication/json
Request
curl -X POST "https://api.insy.io/oauth/revoke" \
  -H "Content-Type: application/json" \
  -d '{
  "client_id": "string",
  "client_secret": "string",
  "token": "string",
  "token_type_hint": "access_token"
}'
Response
No example response.