List message interaction

GET /v1/Services/{ServiceSid}/Sessions/{SessionSid}/Participants/{ParticipantSid}/MessageInteractions

TODO: Resource-level docs

Path parameters

Query parameters

  • PageSize integer

    How many resources to return in each list page. The default is 50, and the maximum is 1000.

    Minimum value is 1, maximum value is 1000.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • interactions array[object]
      Hide interactions attributes Show interactions attributes
      • account_sid string | null

        The SID of the Account that created the resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

      • data string | null

        A JSON string that includes the message body sent to the participant

      • date_created string(date-time) | null

        The ISO 8601 date and time in GMT when the resource was created

      • date_updated string(date-time) | null

        The ISO 8601 date and time in GMT when the resource was last updated

      • Always empty for Message Interactions

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KP[0-9a-fA-F]{32}$.

      • Always empty for Message Interactions

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^[a-zA-Z]{2}[0-9a-fA-F]{32}$.

      • Always empty for Message Interactions

        Values are accepted, answered, busy, canceled, completed, deleted, delivered, delivery-unknown, failed, in-progress, initiated, no-answer, queued, received, receiving, ringing, scheduled, sending, sent, undelivered, or unknown.

      • Always empty for Message Interactions

      • inbound_resource_url string(uri) | null

        Always empty for Message Interactions

      • The SID of the outbound Participant resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KP[0-9a-fA-F]{32}$.

      • The SID of the outbound Message resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^[a-zA-Z]{2}[0-9a-fA-F]{32}$.

      • The outbound resource status

        Values are accepted, answered, busy, canceled, completed, deleted, delivered, delivery-unknown, failed, in-progress, initiated, no-answer, queued, received, receiving, ringing, scheduled, sending, sent, undelivered, or unknown.

      • The outbound resource type

      • outbound_resource_url string(uri) | null

        The URL of the Twilio message resource

      • participant_sid string | null

        The SID of the Participant resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KP[0-9a-fA-F]{32}$.

      • service_sid string | null

        The SID of the resource's parent Service

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KS[0-9a-fA-F]{32}$.

      • session_sid string | null

        The SID of the resource's parent Session

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KC[0-9a-fA-F]{32}$.

      • sid string | null

        The unique string that identifies the resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KI[0-9a-fA-F]{32}$.

      • type string | null

        The Type of Message Interaction

        Values are message, voice, or unknown.

      • url string(uri) | null

        The absolute URL of the MessageInteraction resource

    • meta object
      Hide meta attributes Show meta attributes
GET /v1/Services/{ServiceSid}/Sessions/{SessionSid}/Participants/{ParticipantSid}/MessageInteractions
curl \
 -X GET https://proxy.twilio.com/v1/Services/{ServiceSid}/Sessions/{SessionSid}/Participants/{ParticipantSid}/MessageInteractions \
 --user "username:password"
Response examples (200)
{
  "interactions": [
    {
      "account_sid": "string",
      "data": "string",
      "date_created": "2023-05-04T09:42:00+00:00",
      "date_updated": "2023-05-04T09:42:00+00:00",
      "inbound_participant_sid": "string",
      "inbound_resource_sid": "string",
      "inbound_resource_status": "accepted",
      "inbound_resource_type": "string",
      "inbound_resource_url": "https://example.com",
      "outbound_participant_sid": "string",
      "outbound_resource_sid": "string",
      "outbound_resource_status": "accepted",
      "outbound_resource_type": "string",
      "outbound_resource_url": "https://example.com",
      "participant_sid": "string",
      "service_sid": "string",
      "session_sid": "string",
      "sid": "string",
      "type": "message",
      "url": "https://example.com"
    }
  ],
  "meta": {
    "first_page_url": "https://example.com",
    "key": "string",
    "next_page_url": "https://example.com",
    "page": 42,
    "page_size": 42,
    "previous_page_url": "https://example.com",
    "url": "https://example.com"
  }
}