v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Channels

Create channel

Creates a new channel for transaction routing and control

Channels are used to control back business transactions and enable routing based on the source of the transaction.

This endpoint generates the following events:

See Data and reporting for more information on events and setting up event notifications.

post/corporate/v1/channels

Request body

channelstring required

Alphanumeric channel code identifier

descriptionstring

Optional description of the channel

Example request

{
  "channel": "GDP",
  "description": "GDP channel"
}

Response

Created. Returns the created channel.

channelstring required

Alphanumeric channel code identifier

created_atstring date-time required

Timestamp when the channel was created in RFC3339 format with milliseconds

descriptionstring

Optional description of the channel

Example response

{
  "channel": "GDP",
  "created_at": "2026-02-26T10:30:00.123Z",
  "description": "GDP channel"
}