The Movie Database · JSON Structure

Tmdb Api List Create Response Structure

TMDB Lists — Create (200 payload).

Type: object Properties: 4
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

ListCreateResponse is a JSON Structure definition published by The Movie Database, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status_message success status_code list_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-structure/tmdb-api-list-create-response-structure.json",
  "name": "ListCreateResponse",
  "description": "TMDB Lists \u2014 Create (200 payload).",
  "type": "object",
  "properties": {
    "status_message": {
      "type": "string",
      "examples": [
        "The item/record was created successfully."
      ]
    },
    "success": {
      "type": "boolean",
      "examples": [
        true
      ],
      "default": true
    },
    "status_code": {
      "type": "int32",
      "examples": [
        1
      ],
      "default": 0
    },
    "list_id": {
      "type": "int32",
      "examples": [
        5861
      ],
      "default": 0
    }
  }
}