curl --request DELETE \
--url https://api.themoviedb.org/3/authentication/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"session_id": "dde0201c7e069c67295c39ad01a74d3f70a0fa74"
}
'{
"success": true
}This endpoint is used to delete a session.
curl --request DELETE \
--url https://api.themoviedb.org/3/authentication/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"session_id": "dde0201c7e069c67295c39ad01a74d3f70a0fa74"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A raw JSON string representing the request body.
Delete Session
Indicates success