Allowlists
Returns and manages the allowlist of email addresses.
Table-Specific Information
Select
The provider uses the Mailchimp API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the provider.
| Column | Supported Operators |
| = |
SELECT * FROM Allowlists WHERE Email = '[email protected]'
Insert
The Email column is required for INSERT operations.
INSERT INTO Allowlists (Email) VALUES ('[email protected]')
Delete
The Email column is required for DELETE operations.
DELETE FROM Allowlists WHERE Email = '[email protected]'
Columns
| Name | Type | ReadOnly | Description |
| Email [KEY] | String | False |
An email address to add to the allowlist. |
| CreatedAt | Datetime | True |
A description of why the email was allowlisted. |
| Detail | String | True |
When the email was added to the allowlist. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.
| Name | Type | Description |
| Comment | String |
An optional description of why the email was added to the allowlist. Only used for INSERT. |