POST
/
3
/
authentication
/
session
/
new
curl --request POST \
  --url https://api.themoviedb.org/3/authentication/session/new \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "@Nov022003",
  "request_token": "fcb53897ef777a93830818bfc428be6cd6ef962d",
  "username": "gloriaSilver"
}'
{
  "session_id": "6c8994060cf089b2d444fd0ceee13699fa354196",
  "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

Create Session ID

The response is of type object.