Amazon Pinpoint · Schema

EndpointBatchRequest

Specifies a batch of endpoints to create or update and the settings and attributes to set or change for each endpoint.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Item object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-endpoint-batch-request-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-endpoint-batch-request-schema.json",
  "title": "EndpointBatchRequest",
  "description": "Specifies a batch of endpoints to create or update and the settings and attributes to set or change for each endpoint.",
  "type": "object",
  "properties": {
    "Item": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfEndpointBatchItem"
        },
        {
          "description": "An array that defines the endpoints to create or update and, for each endpoint, the property values to set or change. An array can contain a maximum of 100 items."
        }
      ]
    }
  },
  "required": [
    "Item"
  ]
}