Revoke Session Token
POST
/session/token/revoke
const url = 'https://app.bluelightmaps.com/api/session/token/revoke';const options = { method: 'POST', headers: { Authorization: 'Basic <credentials>', 'Content-Type': 'application/x-www-form-urlencoded' }, body: new URLSearchParams({token: 'example'})};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://app.bluelightmaps.com/api/session/token/revoke \ --header 'Authorization: Basic <credentials>' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data token=exampleAuthorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/x-www-form-urlencoded
object
token
required
string
Example generated
token=exampleResponses
Section titled “ Responses ”No Content
Bad request