Iterable · Schema

Channel

A messaging channel in Iterable

Cross-Channel MessagingCustomer EngagementEmailMarketing AutomationPush NotificationsSMS

Properties

Name Type Description
id integer Channel ID
name string Channel name
channelType string Type of channel
messageMedium string Message medium for this channel
View JSON Schema on GitHub

JSON Schema

iterable-channel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Channel",
  "title": "Channel",
  "type": "object",
  "description": "A messaging channel in Iterable",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Channel ID"
    },
    "name": {
      "type": "string",
      "description": "Channel name"
    },
    "channelType": {
      "type": "string",
      "description": "Type of channel"
    },
    "messageMedium": {
      "type": "string",
      "description": "Message medium for this channel"
    }
  }
}