DealsFollowers
Get details of deals followers.
Select
The connector will use the Pipedrive API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the connector.
- Id supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM DealsFollowers WHERE Id = 2
INSERT
Insert can be executed by specifying the Name and IconKey columns. The columns that are not required can be inserted optionally.
For example:
INSERT INTO DealsFollowers (userid, id) VALUES (8230170, 8)
DELETE
Delete can be executed by specifying the Id, DealId in the WHERE Clause.
For example:
DELETE FROM DealsFollowers WHERE Id = 1 AND Dealid = 1
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True |
Id. |
AddTime | Datetime | True |
AddTime. |
UserId | Integer | False |
User Id. |
DealId | Integer | True |
Deal Id. |