GET v1/chapters?vod={vod}&deleted={deleted}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
vod | integer |
None. |
|
deleted | boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
ChaptersResourceName | Description | Type | Additional information |
---|---|---|---|
Chapters | Collection of ChapterDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "chapters": [ { "id": 1, "vod": 2, "title": "sample string 3", "body": "sample string 4", "operatorNote": "sample string 5", "offset": 6, "quickAdded": true, "order": 8, "deleted": true, "hidden": true }, { "id": 1, "vod": 2, "title": "sample string 3", "body": "sample string 4", "operatorNote": "sample string 5", "offset": 6, "quickAdded": true, "order": 8, "deleted": true, "hidden": 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"> <Chapters> <Chapter> <Body>sample string 4</Body> <Deleted>true</Deleted> <Hidden>true</Hidden> <Id>1</Id> <Offset>6</Offset> <OperatorNote>sample string 5</OperatorNote> <Order>8</Order> <QuickAdded>true</QuickAdded> <Title>sample string 3</Title> <Vod>2</Vod> </Chapter> <Chapter> <Body>sample string 4</Body> <Deleted>true</Deleted> <Hidden>true</Hidden> <Id>1</Id> <Offset>6</Offset> <OperatorNote>sample string 5</OperatorNote> <Order>8</Order> <QuickAdded>true</QuickAdded> <Title>sample string 3</Title> <Vod>2</Vod> </Chapter> </Chapters> </Resources>