cURL
curl --request DELETE \ --url https://api.themoviedb.org/4/auth/access_token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "access_token": "a1b2c2d2e2fgh" } '
{ "success": true, "status_code": 13, "status_message": "The item/record was deleted successfully." }
This endpoint is used to logout of a session.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Token for access.
Successful response
Indicates success
A numeric code indicating the result of the request.
A message providing additional details about the response status.