Reports API Version 2 Channels

Introduction

A Channel is a container for triggers from a particular marketing source. Triggers can be made up of Online and Offline events, such as web site page views or calls. Each Channel is assigned a numeric ID that can be used to reference it in the APIs.

List Channels

Lists the Channels for an IGRP.

Request:

GET /reports/v2/igrps/{IGRP SPECIFIER}/channels

URL Path Params

GET Params

Filter Types

Sort Types

Response:

Returns a list of Channels under the given IGRP spec.

{"igrp":1,"channelId":11,"channelName":"Direct Channel","channelType":"direct","channelOrder":"1"}
{"igrpId":1,"channelId":12,"channelName":"Custom Channel","channelType":"cust","channelOrder":"4"}

Get Channel Config

Get the properties for a particular channel.

Request:

GET /reports/v2/igrps/{IGRP SPECIFIER}/channels/{channelId}

URL Path Params

Response:

Returns the details of the channel specified by the {IGRP SPECIFIER} and {channelId}

{"igrp":1,"channelId":11,"channelName":"Direct Channel","channelType":"direct","channelOrder":"1"}