ADO.NET Provider for Pipedrive

Build 26.0.9655

Products

[DEPRICATED endpoint, use Products in PipedriveV2 instead.] Get details of Products.

Table-Specific Information

SELECT

The provider uses 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 provider.

ColumnSupported Operators
Id=
FirstChar=
FilterId=
UserId=
GetSummary=
Ids=,IN

For example, the following queries are processed server-side:

SELECT * FROM Products WHERE Id = 14

SELECT * FROM Products WHERE FirstChar = 'c'

SELECT * FROM Products WHERE FilterId = 1
 
SELECT * FROM Products WHERE UserId = 1

SELECT * FROM Products WHERE GetSummary = 1

SELECT * FROM Products WHERE Ids IN (1, 2)

INSERT

Execute INSERT by specifying the Name column. You can also insert any columns that are not required.

INSERT INTO Products (name) VALUES ('tests')

UPDATE

Execute UPDATE by specifying the Id in the WHERE clause. All columns that are not read-only can be updated. For example:

UPDATE Products SET Name = 'test123' WHERE Id = 2495

DELETE

Execute DELETE by specifying the Id in the WHERE clause. For example:

DELETE FROM Products WHERE Id = 15

Columns

Name Type ReadOnly References Description
Id [KEY] Integer True

Product Id.

ActiveFlag Boolean True

Whether this product will be made active or not.

The allowed values are 0, 1.

The default value is 1.

AddTime Datetime True

Add Time.

Category Integer False

category.

Code String False

Product code.

CustomFields String True

CustomFields you will get the result of this column only when criteria filter title is used.

Description String False

description.

FilesCount String True

FilesCount.

FirstChar String True

If supplied only Products whose name starts with the specified letter will be returned.

Name String False

Name of the product.

OwnerActiveFlag Boolean True

OwnerActiveFlag.

OwnerEmail String True

OwnerEmail.

OwnerHasPic Boolean True

OwnerHasPic.

OwnerId Integer False

ID of the user who will be marked as the owner of this product.

OwnerName String True

OwnerName.

OwnerPicHash String True

OwnerPicHas.

Ownervalue Integer True

Owner Id.

Prices String False

Object containing price objects.

Selectable Boolean False

Whether this product can be selected in Deals or not.

The allowed values are 0, 1.

The default value is 1.

Tax Integer False

Tax percentage.

The default value is 0.

Type String True

Type you will get the result of this column only when criteria filter title is used.

Unit String False

Unit in which this product is sold.

UpdateTime Datetime True

Update Time.

VisibleTo String False

Visibility of the product.

The allowed values are 1, 3, 5, 7.

SummaryTotalCount String True

You will get data of this column when Criterial filter is GetSummary is used.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
UserId Integer

User Id.

FilterId Integer

Filter Id.

GetSummary Boolean

Get SUmmary.

Ids Integer

The Ids of the Products that should be returned in the response.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655