GET v1/iframes?location={location}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
location | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
IFramesResourceName | Description | Type | Additional information |
---|---|---|---|
IFrames | Collection of IFrameDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "iFrames": [ { "id": 1, "location": 2, "url": "sample string 3", "title": "sample string 4", "height": 5 }, { "id": 1, "location": 2, "url": "sample string 3", "title": "sample string 4", "height": 5 } ] }
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs"> <IFrames> <IFrame> <Height>5</Height> <Id>1</Id> <Location>2</Location> <Title>sample string 4</Title> <Url>sample string 3</Url> </IFrame> <IFrame> <Height>5</Height> <Id>1</Id> <Location>2</Location> <Title>sample string 4</Title> <Url>sample string 3</Url> </IFrame> </IFrames> </Resources>