Screener Room Details

watch.content.screener_room.retrieve

Returns details of the screener room.

Endpoint

GET v2/watch/content/screener-rooms/{screener_room_key}

Headers

Header Value
Authorization Bearer api_key

Response Body

    {
        "key": <str>,
        "force_login": <bool>,
        "recipient": {
            "email": <str>,
            "name": <str>,
        },
        "project": {
            "key": <str>,
            "name": <str>,
            "episodic": <bool>,
            "seasons": [<int>],
            "poster": <url> | null,
            "banner": <url> | null,
            "description": <str>,
            "cast_and_crew": [
                {
                    "name": <str>,
                    "role": <str>
                },
                .
                .
            ],
        },
        "status_code": <status_code>
    }

Status Codes

Indee status code HTTP Response Code Description
W0000 HTTP 200 Success
W2000 HTTP 401 Authorization header was either not passed or there was some issue parsing it
W2003 HTTP 401 Invalid auth token
W2101 HTTP 403 API key not authorized to perform this action
W5001 HTTP 429 Rate limited
W5000 HTTP 500 Unknown server error occurred