TDV Adapter for Pipedrive

Build 22.0.8462

RolesAssignments

List assignments for a role.

Select

The adapter will use the API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the adapter.

  • 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 Description
Id [KEY] Integer True

ID of the role.

ActiveFlag Boolean True

ActiveFlag.

Name String True

Name.

ParentRoleId String True

ParentRoleId.

RoleId Integer False

RoleId.

Type String True

Type.

UserId Integer False

ID of the user.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462