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.
Click "Send request" to see a simulated response.
Code Examples
const res = await fetch('https://rediafile.com/cloud/api/v2/disable_access_token', {
method: 'POST',
headers: { 'Authorization': `Bearer ${token}` },
body: new URLSearchParams({
access_token: 'eyJhbGciOi...'
}),
});
const data = await res.json();