This function is used in Python Scripting.

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.

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax

system.twilio.getPhoneNumbers(accountName)

  • Parameters

String accountName - The Twilio account for which to retrieve phone numbers.

  • Returns

List - A list of phone numbers for the given Twilio account.

  • Scope

Gateway, Vision Client, Perspective Session

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
Keywords

system twilio getPhoneNumbers, twilio.getPhoneNumbers