You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
7
7
## [Unreleased]
8
+
### Added
9
+
- Added `include_field_code` query parameter to Filters endpoints:
10
+
-`GET /v1/filters/{id}`
11
+
-`PUT /v1/filters/{id}`
12
+
-`POST /v1/filters`
13
+
- When set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name. The value is `null` if the field code cannot be resolved.
@@ -45,10 +45,11 @@ $apiInstance = new Pipedrive\versions\v1\Api\FiltersApi(
45
45
new GuzzleHttp\Client(),
46
46
$config
47
47
);
48
+
$include_field_code = True; // bool | If set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name
48
49
$add_filter_request = new \Pipedrive\versions\v1\Model\AddFilterRequest(); // \Pipedrive\versions\v1\Model\AddFilterRequest
**include_field_code** | **bool**| If set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name | [optional]
@@ -241,9 +243,10 @@ $apiInstance = new Pipedrive\versions\v1\Api\FiltersApi(
241
243
$config
242
244
);
243
245
$id = 56; // int | The ID of the filter
246
+
$include_field_code = True; // bool | If set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name
**include_field_code** | **bool**| If set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name | [optional]
258
262
259
263
### Return type
260
264
@@ -403,7 +407,7 @@ Name | Type | Description | Notes
@@ -433,10 +437,11 @@ $apiInstance = new Pipedrive\versions\v1\Api\FiltersApi(
433
437
$config
434
438
);
435
439
$id = 56; // int | The ID of the filter
440
+
$include_field_code = True; // bool | If set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name
436
441
$update_filter_request = new \Pipedrive\versions\v1\Model\UpdateFilterRequest(); // \Pipedrive\versions\v1\Model\UpdateFilterRequest
**include_field_code** | **bool**| If set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name | [optional]
0 commit comments