POST api/tradeService/getProvinceList

Request Information

URI Parameters

None.

Body Parameters

SelectItem
NameDescriptionTypeAdditional information
Label

string

None.

Value

Object

None.

ParentValue

Object

None.

IsSelected

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "label": "sample string 1",
  "value": {},
  "parentValue": {},
  "isSelected": true
}

application/xml, text/xml

Sample:
<SelectItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Dto">
  <IsSelected>true</IsSelected>
  <Label>sample string 1</Label>
  <ParentValue />
  <Value />
</SelectItem>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnResultOfListOfSelectItem
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Data

Collection of SelectItem

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "success": true,
  "data": [
    {
      "label": "sample string 1",
      "value": {},
      "parentValue": {},
      "isSelected": true
    },
    {
      "label": "sample string 1",
      "value": {},
      "parentValue": {},
      "isSelected": true
    }
  ],
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<ReturnResultOfArrayOfSelectItemXT0r93n9 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Dto">
    <d2p1:SelectItem>
      <d2p1:IsSelected>true</d2p1:IsSelected>
      <d2p1:Label>sample string 1</d2p1:Label>
      <d2p1:ParentValue />
      <d2p1:Value />
    </d2p1:SelectItem>
    <d2p1:SelectItem>
      <d2p1:IsSelected>true</d2p1:IsSelected>
      <d2p1:Label>sample string 1</d2p1:Label>
      <d2p1:ParentValue />
      <d2p1:Value />
    </d2p1:SelectItem>
  </Data>
  <Message>sample string 3</Message>
  <Status>1</Status>
  <Success>true</Success>
</ReturnResultOfArrayOfSelectItemXT0r93n9>