cURL
curl --request POST \ --url https://api.themoviedb.org/3/list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "This is my awesome test list.", "description": "ust an awesome list." } '
Creates a new list in the TMDb account associated with the given session.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"This is my awesome test list."
"ust an awesome list."
The item was added successfully.