POST https://zoom.us/oauth/revoke
Supply the Navigate to the Auth tab and under Remember, you can always use the [global variables] feature and syntax within Qodex or directly paste those values in the respective form fields if you do not wish to edit/use the global variables feature. Alternatively, you can clear the Auth tab fields, and use the If you go this route, make sure to re-check the Once you're done, send the POST request to Here's an example request to revoke an access token: If successful, the response body will be a JSON representation of your user's refreshed access token like this: Developer Documentation:Revoking an Access Token
access_token
you wish to revoke to the query params.Basic Auth
fill in the following:
Headers
tab per our Zoom documentation.Headers
key-value field boxes and Base64-encode the Client_ID:Client_Secret
(with the colon between the two and no spaces) before pasting in the Authorization
value field.https://zoom.us/oauth/revoke
(already pre-populated in this request for you).POST /oauth/revoke HTTP/1.1
Host: zoom.us
Authorization: Basic base64Encode(client_id:client_secret)
Content-Type: application/x-www-form-urlencoded; charset=UTF-8 4
token=[ACCESS TOKEN]
{
"status": "success"
}
Body
PARAM
Key | Datatype | Required | Description |
|
null |
HEADERS
Key | Datatype | Required | Description |
Authorization
|
string | The string Basic with your Client ID and Client Secret separated with colon (:), Base64-encoded. | |
Content-Type
|
string |
RESPONSES
status
ENDPOINTS