TeamsUsers
Usage information for the operation TeamsUsers.rsd.
Select
The driver 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 driver.
- Id supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM TeamsUsers WHERE Id = 7
INSERT
Insert can be executed by specifying the Id and Users columns. The columns that are not required can be inserted optionally. Users should be passed in Array.
For example:
INSERT INTO TeamsUsers (Id,Users) VALUES ('1','[1,2,3,4]')
UPDATE
Update can be executed by specifying the Id in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE TeamsUsers SET Name = 'My name just started here', ManagerId = 2 WHERE Id = 7
DELETE
Delete can be executed by specifying the Id in the WHERE Clause.
For example:
DELETE FROM TeamsUsers WHERE Id = 10
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True |
ID of the team. |
Data | String | True |
Data. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
Users | String |
List of User IDs |