curl --request DELETE \
--url https://api.themoviedb.org/3/authentication/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"password": "@Nov022003",
"session_id": "6c8994060cf089b2d444fd0ceee13699fa354196",
"username": "gloriaSilver",
"description": "This represents your username."
}'
{
"success": true
}
This endpoint allows you to delete a session ID.
curl --request DELETE \
--url https://api.themoviedb.org/3/authentication/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"password": "@Nov022003",
"session_id": "6c8994060cf089b2d444fd0ceee13699fa354196",
"username": "gloriaSilver",
"description": "This represents your username."
}'
{
"success": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Delete Session
The response is of type object
.