Productsup
Platform API

Channels

List channels and retrieve channel details using the Platform API.

2 min read

Channels are the export destinations for your data — for example, Google Shopping or Amazon.

Get

Use a GET request to list all channels for a site or retrieve a specific channel.

curl https://platform-api.productsup.io/platform/v2/sites/123/channels
curl https://platform-api.productsup.io/platform/v2/sites/123/channels/321
{
    "success": true,
    "Channels": [
        {
            "id": "321",
            "site_id": "123",
            "channel_id": "111",
            "name": "Criteo DE",
            "export_name": "Criteo",
            "links": [...]
        },
        {
            "id": "541",
            "site_id": "123",
            "channel_id": "222",
            "name": "Zanox DE",
            "export_name": "FZanox",
            "links": [...]
        }
    ]
}

Get all channels for a site

GET https://platform-api.productsup.io/platform/v2/sites/<siteId>/channels

FieldTypeDescription
siteIdintegerSite to list channels for

Get a channel by its identifier

GET https://platform-api.productsup.io/platform/v2/sites/<siteId>/channels/<channelId>

FieldTypeDescription
siteIdintegerSite the channel belongs to
channelIdintegerChannel to retrieve; use the site channel relation ID

Response fields

FieldTypeDescription
successbooleanIndicates request status
ChannelsarrayList of channels

Channel fields

FieldTypeDescription
idintegerID of the site channel relation
site_idintegerID of the referenced site
channel_idintegerID of the channel
namestringName of the export as configured on the channel
export_namestringGeneric name of the export in the Productsup system
linksarraySee link fields
NameDescription
selfLink to channel detail
siteLink to site

On this page

Still stuck?

Reach out to our support team and we’ll help you get unstuck.

Contact support