GET channels
Get all Channels.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Get all Channels.
Collection of ChannelBaseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ChannelName | The name of the Channel | string | None. |
| ChannelType | The type of the Channel. eg. eBay, Amazon | ChannelType | None. |
| ChannelID | The StoreFeeder Channel ID for the Channel. | integer | None. |
| ChannelGuid | globally unique identifier | None. | |
| IsActive | Whether the Channel is currently Enabled. | boolean | None. |
| CustomField1 | Custom field 1 for the channel | string | None. |
| CustomField2 | Custom field 2 for the channel | string | None. |
Response Formats
application/json, text/json
Sample:
[
{
"ChannelName": "Ebay UK",
"ChannelType": "Ebay",
"ChannelID": 1,
"ChannelGuid": "0438721e-1251-4f62-9e44-b4d53b17131c",
"IsActive": false
},
{
"ChannelName": "Amazon UK",
"ChannelType": "Amazon",
"ChannelID": 2,
"ChannelGuid": "99646b91-9bec-40a3-b9bb-47e1eb44ce6a",
"IsActive": false
},
{
"ChannelName": "BigCommerce UK",
"ChannelType": "BigCommerce",
"ChannelID": 3,
"ChannelGuid": "59e17f68-aefc-40ec-a4ce-4e397510dcc5",
"IsActive": false
},
{
"ChannelName": "Shopify UK",
"ChannelType": "Shopify",
"ChannelID": 4,
"ChannelGuid": "6d9da581-cbe1-4ea9-8e75-abba14ab71e1",
"IsActive": false
}
]
application/xml, text/xml
Sample:
<ArrayOfChannelBaseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ChannelBaseModel>
<ChannelName>Ebay UK</ChannelName>
<ChannelType>Ebay</ChannelType>
<ChannelID>1</ChannelID>
<ChannelGuid>0438721e-1251-4f62-9e44-b4d53b17131c</ChannelGuid>
<IsActive>false</IsActive>
</ChannelBaseModel>
<ChannelBaseModel>
<ChannelName>Amazon UK</ChannelName>
<ChannelType>Amazon</ChannelType>
<ChannelID>2</ChannelID>
<ChannelGuid>99646b91-9bec-40a3-b9bb-47e1eb44ce6a</ChannelGuid>
<IsActive>false</IsActive>
</ChannelBaseModel>
<ChannelBaseModel>
<ChannelName>BigCommerce UK</ChannelName>
<ChannelType>BigCommerce</ChannelType>
<ChannelID>3</ChannelID>
<ChannelGuid>59e17f68-aefc-40ec-a4ce-4e397510dcc5</ChannelGuid>
<IsActive>false</IsActive>
</ChannelBaseModel>
<ChannelBaseModel>
<ChannelName>Shopify UK</ChannelName>
<ChannelType>Shopify</ChannelType>
<ChannelID>4</ChannelID>
<ChannelGuid>6d9da581-cbe1-4ea9-8e75-abba14ab71e1</ChannelGuid>
<IsActive>false</IsActive>
</ChannelBaseModel>
</ArrayOfChannelBaseModel>