Favorites
Get details of a record favorited by a particular user.
Select
The add-in 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 add-in.
- Id supports the '=,IN,>=,<=,>,<' operators.
- CreatedAt supports the '=,>=,<=,>,<' operators.
- TargetType supports the '=,IN' operators.
- UpdatedAt supports the '=,>=,<=,>,<' operators.
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 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. |