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. |
Response Formats
application/json, text/json
Sample:
{ "ChannelName": "Shopify UK", "ChannelType": "Shopify", "ChannelID": 1, "ChannelGuid": "f1e29f40-8725-4833-956e-4549fcbbf571", "IsActive": false }
application/xml, text/xml
Sample:
<ChannelBaseModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ChannelName>Shopify UK</ChannelName> <ChannelType>Shopify</ChannelType> <ChannelID>1</ChannelID> <ChannelGuid>f1e29f40-8725-4833-956e-4549fcbbf571</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel>