ProductFields
Returns data about all product fields.
Select
The 本製品 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 本製品.
- Id supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM ProductFields WHERE Id = 28
INSERT
Insert can be executed by specifying the Name and FieldType columns. The columns that are not required can be inserted optionally.
For example:
INSERT INTO ProductFields (Name, FieldType) VALUES ('BangaloreCdataIndia123', 'address')
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 ProductFields SET Name = 'My name just started here' WHERE Id = 28
DELETE
Delete can be executed by specifying the Id in the WHERE Clause.
For example:
DELETE FROM ProductFields WHERE Id = 9040
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True |
ID of the Product Field. |
ActiveFlag | Boolean | True |
ActiveFlag. |
AddTime | Datetime | True |
AddTime. |
AddVisibleFlag | Boolean | True |
AddVisibleFlag. |
BulkEditAllowed | Boolean | True |
BulkEditAllowed. |
DetailsVisibleFlag | Boolean | True |
DetailsVisibleFlag. |
EditFlag | Boolean | True |
EditFlag. |
FieldType | String | False |
Type of the field. 使用できる値は次のとおりです。address, date, daterange, double, enum, monetary, org, people, phone, set, text, time, timerange, user, varchar, varchar_auto, visible_to |
FilteringAllowed | Boolean | True |
FilteringAllowed. |
ImportantFlag | Boolean | True |
ImportantFlag. |
IndexVisibleFlag | Boolean | True |
IndexVisibleFlag. |
Key | String | True |
Key. |
LastUpdatedByUserId | String | True |
LastUpdatedByUserId. |
MandatoryFlag | Boolean | True |
MandatoryFlag. |
Name | String | False |
Name of the field. |
Options | String | False |
Options. |
OrderNr | Integer | True |
OrderNr. |
PicklistData | String | True |
PicklistData. |
SearchableFlag | Boolean | True |
SearchableFlag. |
SortableFlag | Boolean | True |
SortableFlag. |
UpdateTime | Datetime | True |
UpdateTime. |