This function is used in Python Scripting.

Description

Return 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

Nothing

  • Returns

List A list of configured Twilio accounts.

  • Scope

Gateway, Vision Client, Perspective Session

Code Examples
Code Snippet
# 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
Keywords

system twilio getAccounts, twilio.getAccounts