Skip to main content
POST
/
3
/
authentication
/
session
/
convert
/
4
Create Session (from v4 token)
curl --request POST \
  --url https://api.themoviedb.org/3/authentication/session/convert/4 \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 5,
  "status_message": "Invalid parameters: Your request parameters are incorrect.",
  "success": false
}

Authorizations

Authorization
string
header
required

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

Response