POST jxc_api/Balances/GetWhList

Request Information

URI Parameters

None.

Body Parameters

GetWhListPara
NameDescriptionTypeAdditional information
FeatchAll

integer

None.

ShowDisableWh

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "FeatchAll": 1,
  "ShowDisableWh": true
}

application/xml, text/xml

Sample:
<GetWhListPara xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.Storage.Models">
  <FeatchAll>1</FeatchAll>
  <ShowDisableWh>true</ShowDisableWh>
</GetWhListPara>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of IdNamePair
NameDescriptionTypeAdditional information
Id

integer

None.

No

string

None.

Name

string

None.

CategoryID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "No": "sample string 2",
    "Name": "sample string 3",
    "CategoryID": 4
  },
  {
    "Id": 1,
    "No": "sample string 2",
    "Name": "sample string 3",
    "CategoryID": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfIdNamePair xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Models">
  <IdNamePair>
    <CategoryID>4</CategoryID>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <No>sample string 2</No>
  </IdNamePair>
  <IdNamePair>
    <CategoryID>4</CategoryID>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <No>sample string 2</No>
  </IdNamePair>
</ArrayOfIdNamePair>