Amazon Connect · Schema

SearchContactsResponse

SearchContactsResponse schema from Amazon Connect Service API

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
Contacts array
NextToken string
TotalCount integer The total count of the search result.
View JSON Schema on GitHub

JSON Schema

search-contacts-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-schema/search-contacts-response-schema.json",
  "title": "SearchContactsResponse",
  "description": "SearchContactsResponse schema from Amazon Connect Service API",
  "type": "object",
  "properties": {
    "Contacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ContactSummary"
      }
    },
    "NextToken": {
      "type": "string"
    },
    "TotalCount": {
      "type": "integer",
      "description": "The total count of the search result."
    }
  }
}