WatchList - Project Listing

watch.content.watchlist_project.list

Returns all the projects added by the authenticated user to the watchlist

Headers

Header Value
Authorization JWT token

Endpoint

GET v2/watch/content/watchlist/projects

Query Parameters

Response Body

    {
        "count": 30,
        "previous": "example.com",
        "next": "example.com",
        "results": [
            {
                "key": <str>,
                "name": <str>,
                "poster": <str>
            }
            .
            .
        ]
    }
Field Type Description
count Integer Total count of the results w/o pagination.
next String Next page of results.
previous String Previous page of results.
key String The unique identifier for the project.
name String Name of the project.
poster String Link for the project poster.

Status Codes

Indee status code HTTP Response Code Description
W0000 HTTP 200 Success
W0001 HTTP 200 No Content
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
W2104 HTTP 403 Feature not available
W4902 HTTP 400 Invalid Brand
W4903 HTTP 400 Invalid Genre
W5001 HTTP 429 Rate limited
W5000 HTTP 500 Unknown server error occurred