GET v1/reels/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ReelResource| Name | Description | Type | Additional information |
|---|---|---|---|
| Reel | ReelDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"reel": {
"id": 1,
"media": 1,
"chapter": 2,
"title": 3,
"length": 4,
"cue": 5,
"reelNumber": 6,
"show": 1,
"userFileName": "sample string 7",
"assetReelLinks": [
1,
2
],
"hasValidFile": true,
"hasInvalidFile": true,
"hasProcessingFile": true,
"playbackAsset": 1,
"secondaryAudioProgramming": 11,
"audioPrograms": 12
}
}
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
<Reel>
<AssetReelLinks xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>1</d3p1:int>
<d3p1:int>2</d3p1:int>
</AssetReelLinks>
<AudioPrograms>12</AudioPrograms>
<Chapter>2</Chapter>
<Cue>5</Cue>
<HasInvalidFile>true</HasInvalidFile>
<HasProcessingFile>true</HasProcessingFile>
<HasValidFile>true</HasValidFile>
<Id>1</Id>
<Length>4</Length>
<Media>1</Media>
<PlaybackAsset>1</PlaybackAsset>
<ReelNumber>6</ReelNumber>
<SecondaryAudioProgramming>11</SecondaryAudioProgramming>
<Show>1</Show>
<Title>3</Title>
<UserFileName>sample string 7</UserFileName>
</Reel>
</Resources>