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": "Ebay UK", "ChannelType": "Ebay", "ChannelID": 1, "ChannelGuid": "a6d1f595-6163-4301-accb-d9aca3a4a76a", "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>Ebay UK</ChannelName> <ChannelType>Ebay</ChannelType> <ChannelID>1</ChannelID> <ChannelGuid>a6d1f595-6163-4301-accb-d9aca3a4a76a</ChannelGuid> <IsActive>false</IsActive> </ChannelBaseModel>