Pulsoid API Documentation
DashboardRequest CredentialsDiscord
  • Intro
  • Access Token Management
    • OAuth2 Implicit Grant
    • OAuth2 Authorization Code Grant
    • OAuth2 Client Credentials Grant Type(server token)
    • Manual Token Issuing
    • OAuth2 Refreshing the token
    • Revoke authorization token
    • Validate authorization token
    • List of supported scopes
  • Read Heart Rate
    • Read Latest Heart Rate via HTTP
    • Read Heart Rate via WebSocket
    • Page
    • Read Statistics
  • Widgets Management
    • Widget Entity
    • Create Widget
    • Read Widget
    • Update Widget
  • Read Profile Information
  • Error Code Format
  • VRChat
    • VRChat World Integration
Powered by GitBook
On this page
  1. Access Token Management

Revoke authorization token

Request:

name
value

url

https://dev.pulsoid.net/oauth2/revoke

method

POST

Body Parameters explained:

Name
Type
Description

token

string

Obtained access token

cURL Request Example:

curl --request POST \
  --url https://dev.pulsoid.net/oauth2/revoke \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data token=ac902193-f705-4db6-8132-cb3243520734

Response Example:

200 OK

PreviousOAuth2 Refreshing the tokenNextValidate authorization token

Last updated 1 year ago