Amazon Connect · JSON Structure

Start Outbound Voice Contact Request Structure

StartOutboundVoiceContactRequest schema from Amazon Connect Service API

Type: object Properties: 7 Required: 3
ChatContact CenterCustomer ServiceVoiceAIOmnichannel

StartOutboundVoiceContactRequest is a JSON Structure definition published by Amazon Connect, describing 7 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DestinationPhoneNumber ContactFlowId InstanceId ClientToken SourcePhoneNumber QueueId Attributes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-structure/start-outbound-voice-contact-request-structure.json",
  "name": "StartOutboundVoiceContactRequest",
  "description": "StartOutboundVoiceContactRequest schema from Amazon Connect Service API",
  "type": "object",
  "properties": {
    "DestinationPhoneNumber": {
      "type": "string",
      "description": "The phone number of the customer, in E.164 format.",
      "example": "+12065551212"
    },
    "ContactFlowId": {
      "type": "string",
      "description": "The identifier of the contact flow for the outbound call.",
      "example": "a1b2c3d4-5678-90ab-cdef-77777EXAMPLE"
    },
    "InstanceId": {
      "type": "string",
      "description": "The identifier of the Amazon Connect instance.",
      "example": "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE"
    },
    "ClientToken": {
      "type": "string",
      "description": "Idempotency token."
    },
    "SourcePhoneNumber": {
      "type": "string",
      "description": "The phone number associated with the Amazon Connect instance, in E.164 format."
    },
    "QueueId": {
      "type": "string",
      "description": "The queue for the call.",
      "example": "a1b2c3d4-5678-90ab-cdef-55555EXAMPLE"
    },
    "Attributes": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "ContactFlowId",
    "DestinationPhoneNumber",
    "InstanceId"
  ]
}