GET v1/chapteringsessions?vod={vod}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
vod | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
ChapteringSessionsResourceName | Description | Type | Additional information |
---|---|---|---|
ChapteringSessions | Collection of ChapteringSessionDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "chapteringSessions": [ { "id": 1, "vod": 2, "scheduleItem": 1, "startTime": "2025-07-08T10:43:43.8120252-04:00", "sessionEnded": true }, { "id": 1, "vod": 2, "scheduleItem": 1, "startTime": "2025-07-08T10:43:43.8120252-04:00", "sessionEnded": true } ] }
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs"> <ChapteringSessions> <ChapteringSession> <Id>1</Id> <ScheduleItem>1</ScheduleItem> <SessionEnded>true</SessionEnded> <StartTime>2025-07-08T10:43:43.8120252-04:00</StartTime> <Vod>2</Vod> </ChapteringSession> <ChapteringSession> <Id>1</Id> <ScheduleItem>1</ScheduleItem> <SessionEnded>true</SessionEnded> <StartTime>2025-07-08T10:43:43.8120252-04:00</StartTime> <Vod>2</Vod> </ChapteringSession> </ChapteringSessions> </Resources>