selection_mode | string or SelectableOption | Yes | - | Selection mode for accounts. Available options: ‘manual’: User can pick accounts from a dropdown in the UI in the node settings. ‘all’: Select all available accounts the user has access to. ‘filter’: User can filter accounts by name or ID. |
accounts | array (also accepts a comma-separated string) | No | - | List of accounts to select from. If not provided, the user will be prompted to select accounts in the UI. Only use if ‘selection_mode’ is ‘manual’. The accounts should be in the format: |
filters | array of FilterItem | No | - | List of filters to apply to the accounts. Each filter must have a field, operator, and value. Only use if ‘selection_mode’ is ‘filter’. The only available fields to filter by are: - ‘accountName’ - ‘accountId’ Filters are combined using AND logic. If you want to use OR logic, use relevant operators like REGEXP_MATCH or IN_LIST. |
limit | integer | No | - | The maximum number of accounts to return. If not provided, all accounts will be returned. |