v3

latestOpenAPI 3.0.1Apache 2.0raw.githubusercontent.com2026-08-014669239.7 KB
ConversationSummaries

Create Conversation Summaries

Create one or more conversation summaries associated with the specified profile. Supports both single summary creation and batch creation of up to 10 summaries. Supports request compression for large batch operations and response compression for the response. All summaries will be automatically indexed for semantic search capabilities. The content summary can be up to 4KB in length. Each summary will be created with a unique ID in Twilio Type ID (TTID) format.

post/v1/Stores/{storeId}/Profiles/{profileId}/ConversationSummaries

Headers

Accept-Encodingstring
Example:gzip, deflate, br

Compression algorithms supported by the client (e.g., gzip, deflate, br)

Content-Encoding'gzip' | 'deflate' | 'br' | 'compress'
Example:gzip

Compression algorithm used for the request body (e.g., gzip, deflate, br)

Request body

Example request

{
  "summaries": [
    {
      "source": "conversations",
      "content": "Customer discussed billing concerns and was satisfied with the resolution provided during this conversation.",
      "occurredAt": "2025-01-15T10:15:30Z",
      "conversationId": "conv_conversation_00000000000000000000000000"
    }
  ]
}

Response

Conversation summary creation accepted and is being processed.

messagestring required

Confirmation message for the operation.

Example response

{
  "message": "Summaries creation accepted"
}