Pipelines
Get all Pipelines.
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 Pipelines WHERE Id = 4
INSERT
Insert can be executed by specifying the Name, Active, DealProbability, OrderNr and UrlTitle columns. The columns that are not required can be inserted optionally.
For example:
INSERT INTO PipeLines (Name, Active, DealProbability, OrderNr, UrlTitle) VALUES ('Indias PipeLines for Pipedrive', 'true', '0', 1, 'indiapipedrivepipeline@com')
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 = 'Updating Pipedrive Pipelines1' WHERE Id = 4
DELETE
Delete can be executed by specifying the Id in the WHERE Clause.
For example:
DELETE FROM PipeLines WHERE Id = 5
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True |
ID of the pipeline. |
Name | String | False |
The name of the Pipeline. |
Active | Boolean | False |
Whether this Pipeline will be made inactive (hidden) or active. |
DealProbability | Integer | False |
Whether Deal probability is disabled or enabled for this Pipeline. The allowed values are 0, 1. |
OrderNr | Integer | False |
Defines the order of Pipelines. The default value is 0. |
Selected | Boolean | True |
Selected. |
UpdateTime | Datetime | True |
UpdateTime. |
AddTime | Datetime | True |
AddTime. |
UrlTitle | String | False |
UrlTitle. |