Documentation Index Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /twilio | Type: Application | PCID required: Yes
Tool Description twilio_send_smsSend an SMS message using Twilio twilio_make_phone_callMake a phone call using Twilio twilio_list_messagesList SMS messages from Twilio account twilio_list_callsList phone calls from Twilio account twilio_get_messageGet details of a specific SMS message twilio_get_callGet details of a specific phone call twilio_list_purchased_numbersList phone numbers already purchased and owned by your Twilio account. These numbers can be used immediately for making calls (twilio_make_phone_call) and sending SMS (twilio_send_sms). Use twilio_list_numbers_available_for_purchase to search for numbers you can buy. twilio_update_phone_numberUpdate a Twilio phone number configuration twilio_create_verificationCreate a phone number verification using Twilio Verify twilio_check_verificationCheck a verification code using Twilio Verify twilio_list_recordingsList call recordings from Twilio account twilio_get_account_infoGet Twilio account information and balance twilio_get_phone_numberGet details of a specific phone number twilio_list_numbers_available_for_purchaseSearch for phone numbers available for purchase by country and area code. These numbers are NOT yet purchased and cannot be used for making calls or sending SMS until purchased using twilio_purchase_phone_number. Use twilio_list_purchased_numbers to see numbers already owned by your account. twilio_purchase_phone_numberPurchase a phone number for your Twilio account. The phone number must be from twilio_list_numbers_available_for_purchase. After purchase, the number will appear in twilio_list_purchased_numbers and can be used for calls and SMS. This operation costs money and charges your Twilio account. twilio_delete_phone_numberRelease/delete a phone number from your Twilio account twilio_update_callUpdate a call in progress (redirect to new URL, terminate call, etc.) twilio_delete_callDelete a call record from your account twilio_list_conferencesList conferences in your Twilio account twilio_update_conferenceUpdate a conference (end it, announce URL, etc.) twilio_get_recordingGet details of a specific recording twilio_delete_recordingDelete a recording from your account twilio_list_recording_transcriptionsList transcriptions for a specific recording twilio_update_messageUpdate a message (e.g., cancel a scheduled message) twilio_delete_messageDelete a message from your account twilio_create_conversationCreate a new conversation twilio_list_conversationsList conversations in your account twilio_send_conversation_messageSend a message in a conversation twilio_lookup_phone_numberGet information about a phone number (carrier, caller name, line type) twilio_lookup_caller_nameGet caller name (CNAM) information for a phone number twilio_list_applicationsList TwiML applications in your account
twilio_send_sms
Send an SMS message using Twilio
Parameters:
Parameter Type Required Default Description tostring Yes — Recipient phone number (E.164 format, e.g., +1234567890) fromstring Yes — Sender phone number or alphanumeric sender ID bodystring Yes — Message text content (max 1600 characters) mediaUrlstring[] No — Array of media URLs to send with message
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"to" : {
"type" : "string" ,
"description" : "Recipient phone number (E.164 format, e.g., +1234567890)"
},
"from" : {
"type" : "string" ,
"description" : "Sender phone number or alphanumeric sender ID"
},
"body" : {
"type" : "string" ,
"description" : "Message text content (max 1600 characters)"
},
"mediaUrl" : {
"type" : "array" ,
"items" : {
"type" : "string"
},
"description" : "Array of media URLs to send with message"
}
},
"required" : [
"PCID" ,
"to" ,
"from" ,
"body"
]
}
twilio_make_phone_call
Make a phone call using Twilio
Parameters:
Parameter Type Required Default Description tostring Yes — Phone number to call (E.164 format) fromstring Yes — Twilio phone number to call from urlstring No — TwiML URL for call instructions twimlstring No — TwiML instructions for the call recordboolean No falseWhether to record the call timeoutnumber No 60Call timeout in seconds
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"to" : {
"type" : "string" ,
"description" : "Phone number to call (E.164 format)"
},
"from" : {
"type" : "string" ,
"description" : "Twilio phone number to call from"
},
"url" : {
"type" : "string" ,
"description" : "TwiML URL for call instructions"
},
"twiml" : {
"type" : "string" ,
"description" : "TwiML instructions for the call"
},
"record" : {
"type" : "boolean" ,
"default" : false ,
"description" : "Whether to record the call"
},
"timeout" : {
"type" : "number" ,
"default" : 60 ,
"description" : "Call timeout in seconds"
}
},
"required" : [
"PCID" ,
"to" ,
"from"
]
}
twilio_list_messages
List SMS messages from Twilio account
Parameters:
Parameter Type Required Default Description tostring No — Filter by recipient phone number fromstring No — Filter by sender phone number dateSentstring No — Filter by date sent (YYYY-MM-DD format) limitnumber No 50Maximum number of messages to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"to" : {
"type" : "string" ,
"description" : "Filter by recipient phone number"
},
"from" : {
"type" : "string" ,
"description" : "Filter by sender phone number"
},
"dateSent" : {
"type" : "string" ,
"description" : "Filter by date sent (YYYY-MM-DD format)"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of messages to return"
}
},
"required" : [
"PCID"
]
}
twilio_list_calls
List phone calls from Twilio account
Parameters:
Parameter Type Required Default Description tostring No — Filter by recipient phone number fromstring No — Filter by caller phone number statusstring No — Filter by call status startTimestring No — Filter by start time (YYYY-MM-DD format) limitnumber No 50Maximum number of calls to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"to" : {
"type" : "string" ,
"description" : "Filter by recipient phone number"
},
"from" : {
"type" : "string" ,
"description" : "Filter by caller phone number"
},
"status" : {
"type" : "string" ,
"enum" : [
"queued" ,
"ringing" ,
"in-progress" ,
"completed" ,
"busy" ,
"failed" ,
"no-answer" ,
"canceled"
],
"description" : "Filter by call status"
},
"startTime" : {
"type" : "string" ,
"description" : "Filter by start time (YYYY-MM-DD format)"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of calls to return"
}
},
"required" : [
"PCID"
]
}
twilio_get_message
Get details of a specific SMS message
Parameters:
Parameter Type Required Default Description messageSidstring Yes — Message SID to retrieve
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"messageSid" : {
"type" : "string" ,
"description" : "Message SID to retrieve"
}
},
"required" : [
"PCID" ,
"messageSid"
]
}
twilio_get_call
Get details of a specific phone call
Parameters:
Parameter Type Required Default Description callSidstring Yes — Call SID to retrieve
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"callSid" : {
"type" : "string" ,
"description" : "Call SID to retrieve"
}
},
"required" : [
"PCID" ,
"callSid"
]
}
twilio_list_purchased_numbers
List phone numbers already purchased and owned by your Twilio account. These numbers can be used immediately for making calls (twilio_make_phone_call) and sending SMS (twilio_send_sms). Use twilio_list_numbers_available_for_purchase to search for numbers you can buy.
Parameters:
Parameter Type Required Default Description phoneNumberstring No — Filter by phone number friendlyNamestring No — Filter by friendly name limitnumber No 50Maximum number of phone numbers to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumber" : {
"type" : "string" ,
"description" : "Filter by phone number"
},
"friendlyName" : {
"type" : "string" ,
"description" : "Filter by friendly name"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of phone numbers to return"
}
},
"required" : [
"PCID"
]
}
twilio_update_phone_number
Update a Twilio phone number configuration
Parameters:
Parameter Type Required Default Description phoneNumberSidstring Yes — Phone number SID to update friendlyNamestring No — Updated friendly name voiceUrlstring No — Voice webhook URL smsUrlstring No — SMS webhook URL voiceMethodstring No — HTTP method for voice webhook smsMethodstring No — HTTP method for SMS webhook
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumberSid" : {
"type" : "string" ,
"description" : "Phone number SID to update"
},
"friendlyName" : {
"type" : "string" ,
"description" : "Updated friendly name"
},
"voiceUrl" : {
"type" : "string" ,
"description" : "Voice webhook URL"
},
"smsUrl" : {
"type" : "string" ,
"description" : "SMS webhook URL"
},
"voiceMethod" : {
"type" : "string" ,
"enum" : [
"GET" ,
"POST"
],
"description" : "HTTP method for voice webhook"
},
"smsMethod" : {
"type" : "string" ,
"enum" : [
"GET" ,
"POST"
],
"description" : "HTTP method for SMS webhook"
}
},
"required" : [
"PCID" ,
"phoneNumberSid"
]
}
twilio_create_verification
Create a phone number verification using Twilio Verify
Parameters:
Parameter Type Required Default Description serviceSidstring Yes — Verify service SID tostring Yes — Phone number to verify (E.164 format) channelstring No "sms"Verification channel localestring No — Locale for verification message
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"serviceSid" : {
"type" : "string" ,
"description" : "Verify service SID"
},
"to" : {
"type" : "string" ,
"description" : "Phone number to verify (E.164 format)"
},
"channel" : {
"type" : "string" ,
"enum" : [
"sms" ,
"call" ,
"email"
],
"default" : "sms" ,
"description" : "Verification channel"
},
"locale" : {
"type" : "string" ,
"description" : "Locale for verification message"
}
},
"required" : [
"PCID" ,
"serviceSid" ,
"to"
]
}
twilio_check_verification
Check a verification code using Twilio Verify
Parameters:
Parameter Type Required Default Description serviceSidstring Yes — Verify service SID tostring Yes — Phone number that was verified codestring Yes — Verification code to check
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"serviceSid" : {
"type" : "string" ,
"description" : "Verify service SID"
},
"to" : {
"type" : "string" ,
"description" : "Phone number that was verified"
},
"code" : {
"type" : "string" ,
"description" : "Verification code to check"
}
},
"required" : [
"PCID" ,
"serviceSid" ,
"to" ,
"code"
]
}
twilio_list_recordings
List call recordings from Twilio account
Parameters:
Parameter Type Required Default Description callSidstring No — Filter by call SID dateCreatedstring No — Filter by creation date (YYYY-MM-DD format) limitnumber No 50Maximum number of recordings to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"callSid" : {
"type" : "string" ,
"description" : "Filter by call SID"
},
"dateCreated" : {
"type" : "string" ,
"description" : "Filter by creation date (YYYY-MM-DD format)"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of recordings to return"
}
},
"required" : [
"PCID"
]
}
twilio_get_account_info
Get Twilio account information and balance
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
}
},
"required" : [
"PCID"
]
}
twilio_get_phone_number
Get details of a specific phone number
Parameters:
Parameter Type Required Default Description phoneNumberSidstring Yes — Phone number SID to retrieve
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumberSid" : {
"type" : "string" ,
"description" : "Phone number SID to retrieve"
}
},
"required" : [
"PCID" ,
"phoneNumberSid"
]
}
twilio_list_numbers_available_for_purchase
Search for phone numbers available for purchase by country and area code. These numbers are NOT yet purchased and cannot be used for making calls or sending SMS until purchased using twilio_purchase_phone_number. Use twilio_list_purchased_numbers to see numbers already owned by your account.
Parameters:
Parameter Type Required Default Description countryCodestring No "US"Country code (e.g., US, GB, CA) numberTypestring No "Local"Type of phone number to search for: Local (standard local numbers), TollFree (1-800 style numbers), or Mobile (mobile numbers) areaCodestring No — Area code to search (e.g., 415) containsstring No — Pattern to search in phone number smsEnabledboolean No — Filter for SMS-enabled numbers mmsEnabledboolean No — Filter for MMS-enabled numbers voiceEnabledboolean No — Filter for voice-enabled numbers limitnumber No 20Maximum number of results to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"countryCode" : {
"type" : "string" ,
"default" : "US" ,
"description" : "Country code (e.g., US, GB, CA)"
},
"numberType" : {
"type" : "string" ,
"enum" : [
"Local" ,
"TollFree" ,
"Mobile"
],
"default" : "Local" ,
"description" : "Type of phone number to search for: Local (standard local numbers), TollFree (1-800 style numbers), or Mobile (mobile numbers)"
},
"areaCode" : {
"type" : "string" ,
"description" : "Area code to search (e.g., 415)"
},
"contains" : {
"type" : "string" ,
"description" : "Pattern to search in phone number"
},
"smsEnabled" : {
"type" : "boolean" ,
"description" : "Filter for SMS-enabled numbers"
},
"mmsEnabled" : {
"type" : "boolean" ,
"description" : "Filter for MMS-enabled numbers"
},
"voiceEnabled" : {
"type" : "boolean" ,
"description" : "Filter for voice-enabled numbers"
},
"limit" : {
"type" : "number" ,
"default" : 20 ,
"description" : "Maximum number of results to return"
}
},
"required" : [
"PCID"
]
}
twilio_purchase_phone_number
Purchase a phone number for your Twilio account. The phone number must be from twilio_list_numbers_available_for_purchase. After purchase, the number will appear in twilio_list_purchased_numbers and can be used for calls and SMS. This operation costs money and charges your Twilio account.
Parameters:
Parameter Type Required Default Description phoneNumberstring Yes — Phone number to purchase (E.164 format, e.g., +14155551234) friendlyNamestring No — Friendly name for the phone number voiceUrlstring No — URL to handle incoming voice calls smsUrlstring No — URL to handle incoming SMS voiceMethodstring No — HTTP method for voice webhook smsMethodstring No — HTTP method for SMS webhook
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumber" : {
"type" : "string" ,
"description" : "Phone number to purchase (E.164 format, e.g., +14155551234)"
},
"friendlyName" : {
"type" : "string" ,
"description" : "Friendly name for the phone number"
},
"voiceUrl" : {
"type" : "string" ,
"description" : "URL to handle incoming voice calls"
},
"smsUrl" : {
"type" : "string" ,
"description" : "URL to handle incoming SMS"
},
"voiceMethod" : {
"type" : "string" ,
"enum" : [
"GET" ,
"POST"
],
"description" : "HTTP method for voice webhook"
},
"smsMethod" : {
"type" : "string" ,
"enum" : [
"GET" ,
"POST"
],
"description" : "HTTP method for SMS webhook"
}
},
"required" : [
"PCID" ,
"phoneNumber"
]
}
twilio_delete_phone_number
Release/delete a phone number from your Twilio account
Parameters:
Parameter Type Required Default Description phoneNumberSidstring Yes — Phone number SID to delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumberSid" : {
"type" : "string" ,
"description" : "Phone number SID to delete"
}
},
"required" : [
"PCID" ,
"phoneNumberSid"
]
}
twilio_update_call
Update a call in progress (redirect to new URL, terminate call, etc.)
Parameters:
Parameter Type Required Default Description callSidstring Yes — Call SID to update urlstring No — New TwiML URL to redirect call to methodstring No — HTTP method for the URL statusstring No — New status for the call (to terminate) twimlstring No — TwiML instructions to execute on the call
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"callSid" : {
"type" : "string" ,
"description" : "Call SID to update"
},
"url" : {
"type" : "string" ,
"description" : "New TwiML URL to redirect call to"
},
"method" : {
"type" : "string" ,
"enum" : [
"GET" ,
"POST"
],
"description" : "HTTP method for the URL"
},
"status" : {
"type" : "string" ,
"enum" : [
"canceled" ,
"completed"
],
"description" : "New status for the call (to terminate)"
},
"twiml" : {
"type" : "string" ,
"description" : "TwiML instructions to execute on the call"
}
},
"required" : [
"PCID" ,
"callSid"
]
}
twilio_delete_call
Delete a call record from your account
Parameters:
Parameter Type Required Default Description callSidstring Yes — Call SID to delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"callSid" : {
"type" : "string" ,
"description" : "Call SID to delete"
}
},
"required" : [
"PCID" ,
"callSid"
]
}
twilio_list_conferences
List conferences in your Twilio account
Parameters:
Parameter Type Required Default Description statusstring No — Filter by conference status dateCreatedstring No — Filter by creation date (YYYY-MM-DD format) friendlyNamestring No — Filter by friendly name limitnumber No 50Maximum number of conferences to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"status" : {
"type" : "string" ,
"enum" : [
"init" ,
"in-progress" ,
"completed"
],
"description" : "Filter by conference status"
},
"dateCreated" : {
"type" : "string" ,
"description" : "Filter by creation date (YYYY-MM-DD format)"
},
"friendlyName" : {
"type" : "string" ,
"description" : "Filter by friendly name"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of conferences to return"
}
},
"required" : [
"PCID"
]
}
twilio_update_conference
Update a conference (end it, announce URL, etc.)
Parameters:
Parameter Type Required Default Description conferenceSidstring Yes — Conference SID to update statusstring No — Set to “completed” to end the conference announceUrlstring No — URL to play announcement to conference announceMethodstring No — HTTP method for announcement URL
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"conferenceSid" : {
"type" : "string" ,
"description" : "Conference SID to update"
},
"status" : {
"type" : "string" ,
"enum" : [
"completed"
],
"description" : "Set to \" completed \" to end the conference"
},
"announceUrl" : {
"type" : "string" ,
"description" : "URL to play announcement to conference"
},
"announceMethod" : {
"type" : "string" ,
"enum" : [
"GET" ,
"POST"
],
"description" : "HTTP method for announcement URL"
}
},
"required" : [
"PCID" ,
"conferenceSid"
]
}
twilio_get_recording
Get details of a specific recording
Parameters:
Parameter Type Required Default Description recordingSidstring Yes — Recording SID to retrieve
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"recordingSid" : {
"type" : "string" ,
"description" : "Recording SID to retrieve"
}
},
"required" : [
"PCID" ,
"recordingSid"
]
}
twilio_delete_recording
Delete a recording from your account
Parameters:
Parameter Type Required Default Description recordingSidstring Yes — Recording SID to delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"recordingSid" : {
"type" : "string" ,
"description" : "Recording SID to delete"
}
},
"required" : [
"PCID" ,
"recordingSid"
]
}
twilio_list_recording_transcriptions
List transcriptions for a specific recording
Parameters:
Parameter Type Required Default Description recordingSidstring Yes — Recording SID limitnumber No 50Maximum number of transcriptions to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"recordingSid" : {
"type" : "string" ,
"description" : "Recording SID"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of transcriptions to return"
}
},
"required" : [
"PCID" ,
"recordingSid"
]
}
twilio_update_message
Update a message (e.g., cancel a scheduled message)
Parameters:
Parameter Type Required Default Description messageSidstring Yes — Message SID to update bodystring No — Updated message body statusstring No — Set to “canceled” to cancel a scheduled message
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"messageSid" : {
"type" : "string" ,
"description" : "Message SID to update"
},
"body" : {
"type" : "string" ,
"description" : "Updated message body"
},
"status" : {
"type" : "string" ,
"enum" : [
"canceled"
],
"description" : "Set to \" canceled \" to cancel a scheduled message"
}
},
"required" : [
"PCID" ,
"messageSid"
]
}
twilio_delete_message
Delete a message from your account
Parameters:
Parameter Type Required Default Description messageSidstring Yes — Message SID to delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"messageSid" : {
"type" : "string" ,
"description" : "Message SID to delete"
}
},
"required" : [
"PCID" ,
"messageSid"
]
}
twilio_create_conversation
Create a new conversation
Parameters:
Parameter Type Required Default Description friendlyNamestring No — Friendly name for the conversation uniqueNamestring No — Unique name for the conversation attributesstring No — JSON string of custom attributes
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"friendlyName" : {
"type" : "string" ,
"description" : "Friendly name for the conversation"
},
"uniqueName" : {
"type" : "string" ,
"description" : "Unique name for the conversation"
},
"attributes" : {
"type" : "string" ,
"description" : "JSON string of custom attributes"
}
},
"required" : [
"PCID"
]
}
twilio_list_conversations
List conversations in your account
Parameters:
Parameter Type Required Default Description limitnumber No 50Maximum number of conversations to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of conversations to return"
}
},
"required" : [
"PCID"
]
}
twilio_send_conversation_message
Send a message in a conversation
Parameters:
Parameter Type Required Default Description conversationSidstring Yes — Conversation SID bodystring No — Message text content authorstring No — Author identity for the message mediaUrlstring[] No — Array of media URLs to send with message attributesstring No — JSON string of custom attributes
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"conversationSid" : {
"type" : "string" ,
"description" : "Conversation SID"
},
"body" : {
"type" : "string" ,
"description" : "Message text content"
},
"author" : {
"type" : "string" ,
"description" : "Author identity for the message"
},
"mediaUrl" : {
"type" : "array" ,
"items" : {
"type" : "string"
},
"description" : "Array of media URLs to send with message"
},
"attributes" : {
"type" : "string" ,
"description" : "JSON string of custom attributes"
}
},
"required" : [
"PCID" ,
"conversationSid"
]
}
twilio_lookup_phone_number
Get information about a phone number (carrier, caller name, line type)
Parameters:
Parameter Type Required Default Description phoneNumberstring Yes — Phone number to lookup (E.164 format, e.g., +14155551234) fieldsstring[] No — Additional data fields to include in lookup
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumber" : {
"type" : "string" ,
"description" : "Phone number to lookup (E.164 format, e.g., +14155551234)"
},
"fields" : {
"type" : "array" ,
"items" : {
"type" : "string" ,
"enum" : [
"caller_name" ,
"carrier" ,
"line_type_intelligence" ,
"sim_swap" ,
"call_forwarding"
]
},
"description" : "Additional data fields to include in lookup"
}
},
"required" : [
"PCID" ,
"phoneNumber"
]
}
twilio_lookup_caller_name
Get caller name (CNAM) information for a phone number
Parameters:
Parameter Type Required Default Description phoneNumberstring Yes — Phone number to lookup (E.164 format, e.g., +14155551234)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"phoneNumber" : {
"type" : "string" ,
"description" : "Phone number to lookup (E.164 format, e.g., +14155551234)"
}
},
"required" : [
"PCID" ,
"phoneNumber"
]
}
twilio_list_applications
List TwiML applications in your account
Parameters:
Parameter Type Required Default Description friendlyNamestring No — Filter by friendly name limitnumber No 50Maximum number of applications to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"friendlyName" : {
"type" : "string" ,
"description" : "Filter by friendly name"
},
"limit" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of applications to return"
}
},
"required" : [
"PCID"
]
}