DELETE
/
3
/
authentication
/
session
curl --request DELETE \
  --url https://api.themoviedb.org/3/authentication/session \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "session_id": "207eec5e3fe592a9d664c299192a2702ad5a672d"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json

Delete session

The response is of type object.