TDV Adapter for Outreach

Build 22.0.8462

Favorites

Get details of a record favorited by a particular user.

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.
  • CreatedAt supports the '=,>=,<=,>,<' operators.
  • TargetType supports the '=' operator.
  • UpdatedAt supports the '=,>=,<=,>,<' operators.
  • UserId supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM Favorites WHERE Id = 1

SELECT * FROM Favorites WHERE Id IN (1,2)

SELECT * FROM Favorites WHERE Id >= 1

SELECT * FROM Favorites WHERE Id <= 1

SELECT * FROM Favorites WHERE Id > 1

SELECT * FROM Favorites WHERE Id < 2

SELECT * FROM Favorites WHERE CreatedAt <= '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE CreatedAt >= '2022-01-25 01:02:02.0 ' AND CreatedAt <= '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE CreatedAt >= '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE CreatedAt = '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE CreatedAt < '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE CreatedAt > '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE UpdatedAt <= '2022-02-25 01:02:02.0'

SELECT * FROM Favorites WHERE UserId = 1

SELECT * FROM Favorites WHERE TargetType = 'Prospect'

Columns

Name Type Description
Id [KEY] Integer Id of favorites.
CreatedAt Datetime The date and time the favorite was created.
TargetType String The type of record that was favorited.
UpdatedAt Datetime The date and time the favorite was last updated.
LinksSelf String Links self.
CreatorId Integer Creator Id.
CreatorType String Creator type.
UserId Integer User's Id.
UserType String User's type.
Type String Type.

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