GET api/podcastmobile?siteId={siteId}&all={all}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | integer |
Required |
|
| all | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RadioShowMobileViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RadioShowId | integer |
None. |
|
| Title | string |
None. |
|
| ImageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RadioShowId": 1,
"Title": "sample string 2",
"ImageUrl": "sample string 3"
},
{
"RadioShowId": 1,
"Title": "sample string 2",
"ImageUrl": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfRadioShowMobileViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIMCMSWebApi.Models.Mobile">
<RadioShowMobileViewModel>
<ImageUrl>sample string 3</ImageUrl>
<RadioShowId>1</RadioShowId>
<Title>sample string 2</Title>
</RadioShowMobileViewModel>
<RadioShowMobileViewModel>
<ImageUrl>sample string 3</ImageUrl>
<RadioShowId>1</RadioShowId>
<Title>sample string 2</Title>
</RadioShowMobileViewModel>
</ArrayOfRadioShowMobileViewModel>