GET channels
Get all Channels.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Get all Channels.
Collection of ChannelBaseModelName | 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": "5a1e71a4-81cc-4287-98b6-56cdba3eeebc", "IsActive": false }, { "ChannelName": "Amazon UK", "ChannelType": "Amazon", "ChannelID": 2, "ChannelGuid": "73f98652-d2fe-451f-a5eb-86977f797cee", "IsActive": false }, { "ChannelName": "BigCommerce UK", "ChannelType": "BigCommerce", "ChannelID": 3, "ChannelGuid": "f425b578-abb1-4765-8d53-80ae1177d03a", "IsActive": false }, { "ChannelName": "Shopify UK", "ChannelType": "Shopify", "ChannelID": 4, "ChannelGuid": "3b962d23-5a39-4034-a39b-4e8b0c5a1ca7", "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>5a1e71a4-81cc-4287-98b6-56cdba3eeebc</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel> <ChannelBaseModel> <ChannelName>Amazon UK</ChannelName> <ChannelType>Amazon</ChannelType> <ChannelID>2</ChannelID> <ChannelGuid>73f98652-d2fe-451f-a5eb-86977f797cee</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel> <ChannelBaseModel> <ChannelName>BigCommerce UK</ChannelName> <ChannelType>BigCommerce</ChannelType> <ChannelID>3</ChannelID> <ChannelGuid>f425b578-abb1-4765-8d53-80ae1177d03a</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel> <ChannelBaseModel> <ChannelName>Shopify UK</ChannelName> <ChannelType>Shopify</ChannelType> <ChannelID>4</ChannelID> <ChannelGuid>3b962d23-5a39-4034-a39b-4e8b0c5a1ca7</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel> </ArrayOfChannelBaseModel>