Skip to main content
FuseFuse
IntegrationsTwilioActions

List Twilio messages

List Twilio Message resources with reviewed filters.

Agent markdown

messages.list · Twilio · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
page_tokenstringNominLength 1; maxLength 512
tostringNominLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
fromstringNominLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
date_sentstringNominLength 10; maxLength 32

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
messagesarray<object>YesmaxItems 100
messages[]objectYesadditionalProperties false
messages[].sidstringYesminLength 34; maxLength 34; pattern ^(SM|MM)[0-9a-fA-F]{32}$
messages[].statusstringYesminLength 1; maxLength 64
messages[].bodystringNomaxLength 1600
messages[].fromstringYesmaxLength 32
messages[].tostringYesmaxLength 32
messages[].date_createdstringNomaxLength 64
messages[].date_sentstringNomaxLength 64
messages[].error_codeintegerNo
messages[].error_messagestringNomaxLength 500
messages[].directionstringNomaxLength 64
next_page_tokenstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "page_token": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "to": {
      "type": "string",
      "minLength": 2,
      "maxLength": 16,
      "pattern": "^\\+[1-9]\\d{1,14}$"
    },
    "from": {
      "type": "string",
      "minLength": 2,
      "maxLength": 16,
      "pattern": "^\\+[1-9]\\d{1,14}$"
    },
    "date_sent": {
      "type": "string",
      "minLength": 10,
      "maxLength": 32
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "messages": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "sid": {
            "type": "string",
            "minLength": 34,
            "maxLength": 34,
            "pattern": "^(SM|MM)[0-9a-fA-F]{32}$"
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "body": {
            "type": "string",
            "maxLength": 1600
          },
          "from": {
            "type": "string",
            "maxLength": 32
          },
          "to": {
            "type": "string",
            "maxLength": 32
          },
          "date_created": {
            "type": "string",
            "maxLength": 64
          },
          "date_sent": {
            "type": "string",
            "maxLength": 64
          },
          "error_code": {
            "type": "integer"
          },
          "error_message": {
            "type": "string",
            "maxLength": 500
          },
          "direction": {
            "type": "string",
            "maxLength": 64
          }
        },
        "required": [
          "sid",
          "status",
          "from",
          "to"
        ]
      },
      "maxItems": 100
    },
    "next_page_token": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "messages"
  ]
}