Skip to main content
Version: 8.1

system.twilio.getAccountsDataset

This function is used in Python Scripting.

Description​

Returns a list of Twilio accounts that have been configured in the Gateway as a single-column Dataset.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.twilio.getAccountsDataset()

Parameters​

Nothing

Returns​

Dataset - A list of configured Twilio accounts as a single-column Dataset.

Scope​

Gateway, Vision Client, Perspective Session

Code Examples​

Code Snippet
# Retrieves a list of Twilio accounts and then passes the data to a Table component's data property.

# Call system.twilio.getAccountsDataset() and store the returned list into a variable.
twilioAccounts = system.twilio.getAccountsDataset()


# Pass the dataset to a Table component. The Table is located in the same container as the
# component calling this script.
event.source.parent.getComponent('Table').data = twilioAccounts

Keywords​

system twilio getAccountsDataset, twilio.getAccountsDataset