Skip to main content
FuseFuse
IntegrationsTwilioActions

Redact Twilio message body

Redact the body of a Twilio Message resource via the documented update operation.

Agent markdown

messages.redact · Twilio · v1

Details

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

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
message_sidstringYesminLength 34; maxLength 34; pattern ^(SM|MM)[0-9a-fA-F]{32}$

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": {
    "message_sid": {
      "type": "string",
      "minLength": 34,
      "maxLength": 34,
      "pattern": "^(SM|MM)[0-9a-fA-F]{32}$"
    }
  },
  "required": [
    "message_sid"
  ]
}
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"
  ]
}