Skip to main content
Version: 7.9

system.twilio.getAccounts

This function is used in Python Scripting.

Description

Returns a list of Twilio accounts that have been configured in the Gateway.

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax

system.twilio.getAccounts()

Parameters

None

Returns

List - A list of configured Twilio accounts

Scope

All

Code Examples

Example #1
# Retrieves a list of twilio accounts and then iterates through the resulting list
# Call system.twilio.getAccounts() and store the returned list into a variable
twilioAccounts = system.twilio.getAccounts()

# Iterate through the list of accounts
for account in twilioAccounts:

# Prints the account name to the console, but could do something more useful with each account
print account