Skip to main content
FuseFuse
IntegrationsTwilioActions

Create Twilio message

Send an SMS message through Twilio Messaging.

Agent markdown

messages.create · Twilio · v1

Details

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

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
fromstringYesminLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
tostringYesminLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
bodystringYesminLength 1; maxLength 1600

Output

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

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "from": {
      "type": "string",
      "minLength": 2,
      "maxLength": 16,
      "pattern": "^\\+[1-9]\\d{1,14}$"
    },
    "to": {
      "type": "string",
      "minLength": 2,
      "maxLength": 16,
      "pattern": "^\\+[1-9]\\d{1,14}$"
    },
    "body": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1600
    }
  },
  "required": [
    "from",
    "to",
    "body"
  ]
}
Output
{
  "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"
  ]
}