ProductVariations
Get details of product variations.
Select
The connector 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 connector.
- ProductId supports the '=' operator.
For example, the following query is processed server side:
Select * from ProductVariations where productid=1
INSERT
Insert can be executed by specifying the Name and productId columns. The columns that are not required can be inserted optionally.
insert into ProductVariations (Name,Productid) values ('product var',1)
UPDATE
UPDATE can be executed by specifying the Id and ProductId in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
Update ProductVariations set name='updated product var' where id=2 and productid=1
DELETE
Delete can be executed by specifying the Id and ProductId in the WHERE Clause.
For example:
DELETE FROM ProductVariations where id=2 and productid=1
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Integer | True |
The unique identifier of the product variant. | |
| Name | String | False |
The name of the product variant. | |
| PricesAggregate | String | False |
The array of the price data of the product variant. | |
| ProductId [KEY] | Integer | False |
The id of the product. |