ProductsFollowers
Get details of products followers.
Select
The 本製品 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 本製品.
- ProductId supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM ProductsFollowers WHERE ProductId = 6
INSERT
Insert can be executed by specifying the UserId, ProductId columns.The columns that are not read-only can be inserted. Following is an example of how to insert into this table.
INSERT INTO ProductsFollowers (UserId, ProductId) VALUES (8230170, 1)
DELETE
Delete can be executed by specifying the Id, ProductId in the WHERE Clause.
For example:
DELETE FROM ProductsFollowers WHERE ProductId = 1 AND id = 1
Columns
Name | Type | ReadOnly | Description |
Id | Integer | True |
Id. |
AddTime | Datetime | True |
AddTime. |
ProductId | Integer | True |
ProductId. |
UserId | Integer | False |
UserId. |