POST api/Sales/Channels
Returns a list of the current sales channels that this Eskimo system accepts.
Request Information
URI Parameters
None.
Body Parameters
EskimoClassLibraries.clsSalesChannelSearchParamsNone.
Request Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<clsSalesChannelSearchParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries" />
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of EskimoClassLibraries.clsSalesChannelName | Description | Type | Additional information |
---|---|---|---|
ChannelID | integer |
Required |
|
AcceptsDeposits | boolean |
None. |
|
Description | string |
None. |
|
ChannelType | EskimoClassLibraries.clsSalesChannel+ChannelTypeEnum |
Required |
Response Formats
application/json, text/json
Sample:
[ { "ChannelID": 1, "AcceptsDeposits": true, "Description": "sample string 3", "ChannelType": 0 }, { "ChannelID": 1, "AcceptsDeposits": true, "Description": "sample string 3", "ChannelType": 0 } ]
application/xml, text/xml
Sample:
<ArrayOfclsSalesChannel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries"> <clsSalesChannel> <AcceptsDeposits>true</AcceptsDeposits> <ChannelID>1</ChannelID> <ChannelType>CustomerOrderItem</ChannelType> <Description>sample string 3</Description> </clsSalesChannel> <clsSalesChannel> <AcceptsDeposits>true</AcceptsDeposits> <ChannelID>1</ChannelID> <ChannelType>CustomerOrderItem</ChannelType> <Description>sample string 3</Description> </clsSalesChannel> </ArrayOfclsSalesChannel>