GET channels/{channelid}

Get Channel By ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
channelid The id of the channel you want to return integer Required

Body Parameters

None.

Response Information

Resource Description

Get Channel By ID

ChannelBaseModel
NameDescriptionTypeAdditional 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": "Amazon UK",
  "ChannelType": "Amazon",
  "ChannelID": 1,
  "ChannelGuid": "54c7573f-ea45-4a20-ad65-3ad956c0c323",
  "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>Amazon UK</ChannelName>
  <ChannelType>Amazon</ChannelType>
  <ChannelID>1</ChannelID>
  <ChannelGuid>54c7573f-ea45-4a20-ad65-3ad956c0c323</ChannelGuid>
  <IsActive>false</IsActive>
</ChannelBaseModel>