GET channels/{channelid}
Get Channel By ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
channelid | The id of the channel you want to return | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Get Channel By ID
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": "Shopify UK", "ChannelType": "Shopify", "ChannelID": 1, "ChannelGuid": "1e109980-18ba-4ebf-b71a-3c2fb4ee8d23", "IsActive": false }
application/xml, text/xml
Sample:
<ChannelBaseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ChannelName>Shopify UK</ChannelName> <ChannelType>Shopify</ChannelType> <ChannelID>1</ChannelID> <ChannelGuid>1e109980-18ba-4ebf-b71a-3c2fb4ee8d23</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel>