POST api/account/SubscriptionInfo?userName={userName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SelectListItem| Name | Description | Type | Additional information |
|---|---|---|---|
| value | string |
None. |
|
| text | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"value": "sample string 1",
"text": "sample string 2"
},
{
"value": "sample string 1",
"text": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfSelectListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CompleteEmpireApp.Api.Models.Base">
<SelectListItem>
<Text>sample string 2</Text>
<Value>sample string 1</Value>
</SelectListItem>
<SelectListItem>
<Text>sample string 2</Text>
<Value>sample string 1</Value>
</SelectListItem>
</ArrayOfSelectListItem>