RolesAssignments
List assignments for a role.
Select
The add-in 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 add-in.
- Id supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM RolesAssignments SELECT * FROM RolesAssignments WHERE Id = 1
INSERT
Insert can be executed by specifying the Id and UserId columns. The columns that are not required can be inserted optionally.
For example:
INSERT INTO RoleAssignments (Id, UserId, RoleId) VALUES (1, 'NameCdataIndia', '1')
DELETE
Delete can be executed by specifying the Id and UserId WHERE Clause.
For example:
DELETE FROM RolesAssignments WHERE Id = 1 AND UserId = 1
Columns
| Name | Type | ReadOnly | References | Description |
| RoleId | Integer | False |
RoleId. | |
| ActiveFlag | Boolean | True |
ActiveFlag. | |
| Name | String | True |
Name. | |
| ParentRoleId | String | True |
ParentRoleId. | |
| Type | String | True |
Type. | |
| UserId | Integer | False |
ID of the user. |