TDV Adapter for Outreach

Build 22.0.8462

EmailAddress

Get details of prospect email addresses.

Select

The adapter will use the API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the adapter.

  • 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.
  • ProspectId supports the '=' operator.
For example, the following query is processed server side:
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 = 'vivek@gmail.com'

SELECT * FROM EmailAddress WHERE ProspectId = 1

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.
Email 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.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462