Playlists
List all playlists
Returns a list of all playlists for the authenticated user
get/v1/playlists
Query parameters
visibility'org' | 'personal'
Visibility: org (shared with entire organization) or personal (only creator)
Example:org
Filter by visibility: personal (only your playlists) or org (shared with organization). Default: personal
cursorstring
Pagination cursor from previous response
Example:eyJpZCI6InBsX3h5eiJ9
Pagination cursor from previous response
limitinteger
Items per page (default: 20, max: 100)
Example:20
Items per page (default: 20, max: 100)
Response
OK
Example response
{
"pagination": {
"hasMore": true,
"nextCursor": "eyJpZCI6IjEyMyJ9"
},
"playlists": [
{
"createdAt": "2024-01-15T10:30:00.000Z",
"description": "A collection of tutorial videos for our product",
"emoji": "🎬",
"groupId": "pg_abc123def456",
"id": "pl_abc123def456",
"linkScope": "public",
"links": {
"viewPage": "https://www.tella.tv/playlist/pl_abc123def456/view"
},
"name": "Product Tutorials",
"searchEngineIndexingEnabled": true,
"updatedAt": "2024-01-15T14:45:00.000Z",
"videos": 12,
"visibility": "org"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.