Skip to main content
DELETE
/
4
/
auth
/
access_token
Logout
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."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
access_token
string
required

Token for access.

Response

200 - application/json

Successful response

success
boolean

Indicates success

status_code
integer

A numeric code indicating the result of the request.

status_message
string

A message providing additional details about the response status.