system.twilio.getAccountsDataset
Description
Return a list of Twilio accounts that have been configured in the gateway as a single-column Dataset
Syntax
system.twilio.getAccounts ( )
-
Parameters
None
-
Returns
Dataset - A list of configured Twilio accounts as a single-column Dataset
-
Scope
All
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.getAccounts()
#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