Switch language

Sandbox

Explore every endpoint with simulated responses — no credentials required.

POST /disable_access_token

Disable Access Token

Revoke and invalidate a previously issued access token.

The token to revoke

Reset form

Click "Send request" to see a simulated response.

Code Examples

import requests

resp = requests.post(
    'https://rediafile.com/cloud/api/v2/disable_access_token',
    headers={'Authorization': f'Bearer {token}'},
    data={
        'access_token': 'eyJhbGciOi...',
    },
)
print(resp.json())