Portal Community

Output Ports

PortDescription
successTwilio API accepted the request. SMS/call queued for delivery or execution.
errorInvalid credential, bad phone number, Twilio API error, or network failure.

sendSms Output

FieldTypeDescription
message_sidstringTwilio Message SID (e.g. SM1234567890abcdef...). Use for status tracking.
statusstringInitial delivery status: queued, sending, or sent.
pricestringEstimated cost of the message (in account currency). May be null if not yet processed.
date_createdstringISO 8601 timestamp when the message resource was created.
fromstringSender phone number used.
tostringRecipient phone number.

makeCall Output

FieldTypeDescription
call_sidstringTwilio Call SID (e.g. CA1234567890abcdef...). Use for call status tracking and recording retrieval.
statusstringInitial call status: queued, initiated, or ringing.
directionstringoutbound-api for programmatic outbound calls.
fromstringCaller phone number.
tostringCalled phone number.

getTranscription Output

FieldTypeDescription
transcription_sidstringUnique SID of the transcription.
transcription_textstringThe full transcribed text of the recording.
recording_sidstringThe Recording SID this transcription was generated from.
statusstringTranscription status: in-progress, completed, or failed.
durationintegerDuration of the recording in seconds.

Example: sendSms Output

{
  "message_sid": "SM1a2b3c4d5e6f7g8h9i0j",
  "status": "queued",
  "price": null,
  "date_created": "2025-11-14T09:32:11Z",
  "from": "+15005550006",
  "to": "+14155552671"
}

Example: makeCall Output

{
  "call_sid": "CA0f1e2d3c4b5a6978",
  "status": "queued",
  "direction": "outbound-api",
  "from": "+15005550006",
  "to": "+14155552671"
}
Final delivery statuses (delivered, failed, undelivered) arrive via Twilio status webhooks. Configure a BizFirst Webhook Trigger as the status_callback URL to react to these events in real time.