Pipelines
Get all pipelines.
Select
The component 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 component.
- Id supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM Pipelines WHERE Id = 1
INSERT
Insert can be executed by specifying the Name column. The columns that are not required can be inserted optionally.
insert into Pipelines (Name) values ('Pipeline 2')
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 Pipelines Set Name = 'Updated Pipeline 2' where id=4
DELETE
Delete can be executed by specifying the Id in the WHERE Clause.
For example:
DELETE FROM Pipelines WHERE Id = 1
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Integer | True |
The unique identifier of the pipeline. | |
| Name | String | False |
The name of the pipeline. | |
| AddTime | Datetime | True |
The date-time in which the pipeline was added. | |
| IsDealProbabilityEnabled | Boolean | False |
Is deal probability enabled. | |
| IsDeleted | Boolean | True |
Is the pipeline deleted. | |
| OrderNr | Integer | True |
The order number of the pipeline. | |
| UpdateTime | Datetime | True |
The date-time in which the pipeline was updated. |