system.twilio.getPhoneNumbers
Description
Returns a list of outgoing phone numbers for a Twilio account. Note that these numbers are supplied by Twilio, and are not defined on a user in Ignition.
Syntax
system.twilio.getPhoneNumbers (accountName )
-
Parameters
String accountName - The Twilio account to retrieve phone numbers for
-
Returns
List - A list of phone numbers for the given Twilio account
-
Scope
All
Code Examples
Code Snippet
#Retrieves a list of phone numbers associated with a twilio account and then iterates through the resulting list
#Checks against a Twilio Profile configured on the gateway by the name of "Twilio Account"
#Call system.twilio.getPhoneNumbers() and store the returned list into a variable
twilioNumbers
=
system.twilio.getPhoneNumbers(
"Twilio Account"
)
#Iterate through the list of numbers
for
number
in
twilioNumbers:
#Prints the numbers to the console, but could do something more useful with each number
print
number