← Tools Reference

Twilio

Twilio integration (Communication). Imported from open-connector.

Credentials form5 toolshttps://api.twilio.com/2010-04-01
GET
twilio_get_account
Fetch the current Twilio account profile for the connected credential.

/Accounts/{accountSid}.json

GET
twilio_list_usage_records
List Twilio usage records for the connected account.

/Accounts/{accountSid}/Usage/Records.json

4 parameters
ParamTypeRequiredDescription
categorystringoptionalThe Twilio usage category to filter by.
startDatestringoptionalThe inclusive start date in YYYY-MM-DD format.
endDatestringoptionalThe inclusive end date in YYYY-MM-DD format.
pageSizeintegeroptionalThe maximum number of records to return in one page.
GET
twilio_list_messages
List SMS or MMS messages for the connected Twilio account.

/Accounts/{accountSid}/Messages.json

4 parameters
ParamTypeRequiredDescription
tostringoptionalOnly include messages sent to this phone number.
fromstringoptionalOnly include messages sent from this phone number.
pageSizeintegeroptionalThe maximum number of records to return in one page.
pageTokenstringoptionalThe Twilio page token used to continue a previous listing.
GET
twilio_get_message
Fetch one Twilio message by message SID.

/Accounts/{accountSid}/Messages/{messageSid}.json

1 parameter
ParamTypeRequiredDescription
messageSidstringrequiredThe Twilio message SID to fetch.
POST
twilio_send_message
Send an outbound SMS or MMS message with Twilio.

/Accounts/{accountSid}/Messages.json

3 parameters
ParamTypeRequiredDescription
tostringrequiredThe destination phone number in E.164 format.
fromstringrequiredThe Twilio phone number sending the message.
bodystringrequiredThe text body of the outbound message.