Skip to main content
FuseFuse
IntegrationsTwilioActions

Create Twilio call

Place an outbound Twilio Voice call with inline TwiML or an HTTPS URL.

Agent markdown

calls.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; oneOf branch 1: required twiml / branch 2: required url
fromstringYesminLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
tostringYesminLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
twimlstringNominLength 1; maxLength 4096
urlstringNominLength 8; maxLength 2048; pattern ^https://; format uri

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
sidstringYesminLength 34; maxLength 34; pattern ^CA[0-9a-fA-F]{32}$
statusstringYesminLength 1; maxLength 64
fromstringYesmaxLength 32
tostringYesmaxLength 32
directionstringNomaxLength 64
durationstringNomaxLength 32
start_timestringNomaxLength 64
end_timestringNomaxLength 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}$"
    },
    "twiml": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4096
    },
    "url": {
      "type": "string",
      "minLength": 8,
      "maxLength": 2048,
      "pattern": "^https://",
      "format": "uri"
    }
  },
  "required": [
    "from",
    "to"
  ],
  "oneOf": [
    {
      "required": [
        "twiml"
      ]
    },
    {
      "required": [
        "url"
      ]
    }
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "sid": {
      "type": "string",
      "minLength": 34,
      "maxLength": 34,
      "pattern": "^CA[0-9a-fA-F]{32}$"
    },
    "status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "from": {
      "type": "string",
      "maxLength": 32
    },
    "to": {
      "type": "string",
      "maxLength": 32
    },
    "direction": {
      "type": "string",
      "maxLength": 64
    },
    "duration": {
      "type": "string",
      "maxLength": 32
    },
    "start_time": {
      "type": "string",
      "maxLength": 64
    },
    "end_time": {
      "type": "string",
      "maxLength": 64
    }
  },
  "required": [
    "sid",
    "status",
    "from",
    "to"
  ]
}