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