Revoke Token
revoke_tokenRevoke an access token and its associated refresh token to disable authentication. Submit token, client ID, and client secret.
Instructions
Revoke authorization of an access token. The request must contain the body data as form-data. The authorization server responds with HTTP status code 200 if the token has been revoked successfully or if the client submitted an invalid token. Note that the Revoke Token endpoint revokes both the Access Token and Refresh Token. The client_secret param is only required for confidential applications. Public applications using the implicit OAuth flow do not need to provide this parameter to revok... Use this to revoke or disable the specified Authentication records. Executes the action and returns a confirmation. Repeated calls are safe. Required parameters: token, client_id, client_secret. Procore API: Platform - Developer Tools > Authentication. Endpoint: POST /oauth/revoke
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | JSON request body field — oAuth2 access token string to be revoked | |
| client_id | Yes | JSON request body field — oAuth application client ID from the Procore Developer Portal | |
| client_secret | Yes | JSON request body field — oAuth application client secret from the Procore Developer Portal |