OrganizationsFollowers
Returns the list of followers for a specified organization, including each follower's user ID and the timestamp when the follower was added.
Table-Specific Information
SELECT
The provider uses the Pipedrive API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the provider.
| Column | Supported Operators |
| OrgId | = |
For example, the following query is processed server-side:
SELECT * FROM OrganizationsFollowers WHERE OrgId = 6
INSERT
Execute INSERT by specifying the UserId and OrgId columns. You can also insert any columns that are not read-only.
For example:
INSERT INTO OrganizationsFollowers (UserId, OrgId) VALUES (8230170, 1)
DELETE
Execute DELETE by specifying Id and OrgId in the WHERE clause.
For example:
DELETE FROM OrganizationsFollowers WHERE OrgId = 1 AND Id = 1
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Integer | True |
Unique identifier of the follower record. | |
| AddTime | Datetime | True |
Timestamp indicating when the follower was added to the organization. | |
| OrgId [KEY] | Integer | False |
Unique identifier of the organization being followed. | |
| UserId | Integer | False |
Unique identifier of the user who is following the organization. |