Amazon Pinpoint · Schema

ChannelsResponse

Provides information about the general settings and status of all channels for an application, including channels that aren't enabled for the application.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Channels object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-channels-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-channels-response-schema.json",
  "title": "ChannelsResponse",
  "description": "Provides information about the general settings and status of all channels for an application, including channels that aren't enabled for the application.",
  "type": "object",
  "properties": {
    "Channels": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MapOfChannelResponse"
        },
        {
          "description": "A map that contains a multipart response for each channel. For each item in this object, the ChannelType is the key and the Channel is the value."
        }
      ]
    }
  },
  "required": [
    "Channels"
  ]
}