The Movie Database · Schema

AuthenticationCreateSessionFromV4TokenResponse

TMDB Authentication — Create Session (from V4 Token) (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

Name Type Description
success boolean
session_id string
View JSON Schema on GitHub

JSON Schema

tmdb-api-authentication-create-session-from-v4token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-authentication-create-session-from-v4token-response-schema.json",
  "title": "AuthenticationCreateSessionFromV4TokenResponse",
  "description": "TMDB Authentication \u2014 Create Session (from V4 Token) (200 payload).",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "examples": [
        true
      ],
      "default": true
    },
    "session_id": {
      "type": "string",
      "examples": [
        "2629f70fb498edc263a0adb99118ac41f0053e8c"
      ]
    }
  }
}