EmailAddress
Get details of prospect email addresses.
Select
The provider will use the Outreach API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the provider.
- Id supports the '=,IN,>=,<=,>,<' operators.
- Email supports the '=,IN' operators.
- EmailType supports the '=,IN' operators.
- Status supports the '=,IN' operators.
- OrderValue supports the '=,>=,<=,>,<' operators.
- StatusChangedAt supports the '=,>=,<=,>,<' operators.
- UnsubscribedAt supports the '=,>=,<=,>,<' operators.
SELECT * FROM EmailAddress WHERE Id = 1 SELECT * FROM EmailAddress WHERE Id IN (1, 2) SELECT * FROM EmailAddress WHERE Id >= 1 SELECT * FROM EmailAddress WHERE Id <= 1 SELECT * FROM EmailAddress WHERE Id > 1 SELECT * FROM EmailAddress WHERE Id < 2 SELECT * FROM EmailAddress WHERE StatusChangedAt <= '2022-02-25 01:02:02.0' SELECT * FROM EmailAddress WHERE StatusChangedAt >= '2022-01-25 01:02:02.0 ' AND StatusChangedAt <= '2022-02-27 01:02:02.0' SELECT * FROM EmailAddress WHERE StatusChangedAt >= '2022-02-25 01:02:02.0' SELECT * FROM EmailAddress WHERE StatusChangedAt = '2022-02-25 01:02:02.0' SELECT * FROM EmailAddress WHERE StatusChangedAt < '2022-02-25 01:02:02.0' SELECT * FROM EmailAddress WHERE StatusChangedAt > '2022-02-25 01:02:02.0' SELECT * FROM EmailAddress WHERE UnsubscribedAt <= '2022-02-25 01:02:02.0' SELECT * FROM EmailAddress WHERE Email = '[email protected]'
Columns
Name | Type | Description |
Id [KEY] | Integer | Id of Email Address. |
BouncedAt | Datetime | The date and time the email was bounced. |
CreatedAt | Datetime | The date and time the email address was created. |
String | The raw email address value. | |
EmailType | String | Type of email address. |
OrderValue | Integer | Ordered position in list of emails. |
Status | String | The status of the email. |
StatusChangedAt | Datetime | Time the status was updated. |
UnsubscribedAt | Datetime | Time a mailing was unsubscribed using this address. |
UpdatedAt | Datetime | The date and time the email address was last updated. |
LinksSelf | String | Link self. |
ProspectId | Integer | Prospect's Id. |
ProspectType | String | Relationship type. |
Type | String | Type. |