Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Authentication
Delete Session
This endpoint allows you to delete a session ID.
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 '{
"password": "@Nov022003",
"session_id": "6c8994060cf089b2d444fd0ceee13699fa354196",
"username": "gloriaSilver",
"description": "This represents your username."
}'
{
"success": true
}
Authorizations
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
.
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
}
Assistant
Responses are generated using AI and may contain mistakes.