Swimlane Listing
This API returns the curated collections of titles published to the authenticated user in the form swimlanes.
Header |
Value |
Authorization |
JWT token |
Endpoint
GET v2/watch/content/swimlanes
Query Parameters
Parameter |
Type |
Required |
Description |
brand |
String |
Optional |
Filter swimlanes by brand. If not passed, the swimlanes set for the all-encompassing allprojects brand (ie. all projects published to the user/audience) are returned. |
page |
Integer |
Optional |
Page number of the results. The default value is 1. |
limit |
Integer |
Optional |
Number of results per page. The default value is 5 and the maximum allowed value is 15. |
Response Body
{
"count": 30,
"previous": "example.com",
"next": "example.com",
"results": [
{
"name": "ABC",
"position": 2,
"projects": [
{
"key": "prj-01hj35p9e3pv2hbwzksjzn8gxx",
"name": "ABC",
"poster": <str>
},
.
.
.
]
},
.
.
]
}
Field |
Type |
Description |
count |
Integer |
The total count of results with pagination. |
previous |
String |
Link to the previous set of results. |
next |
String |
Link to the next set of results. |
key |
String |
The unique identifier for the project. |
results |
JSON |
Results of the swimlane listing. |
name |
String |
Name of the titles of the swimlane. |
position |
String |
The sequence position of the title in the swimlane. |
projects |
JSON |
The details of the project associated with the swimlane listing. |
key |
String |
The key of the project. |
name |
String |
The name of the project. |
poster |
String |
Link to the poster image. |
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 |