GET v1/iframes/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
IFrameResourceName | Description | Type | Additional information |
---|---|---|---|
IFrame | IFrameDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "iFrame": { "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"> <IFrame> <Height>5</Height> <Id>1</Id> <Location>2</Location> <Title>sample string 4</Title> <Url>sample string 3</Url> </IFrame> </Resources>