Skip to content

Commit c5a225d

Browse files
author
pipedrive-bot
committed
Build 165 - version-patch
1 parent ae383d0 commit c5a225d

19 files changed

+398
-59
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [Unreleased]
88
### Added
99
- Added AdditionalData object schema to GetOrganizations and GetPersons data
10+
### Added
11+
- Added AdditionalData object schema to GetOrganizations and GetPersons data
1012

1113
## [8.1.3](https://github.com/pipedrive/client-php/compare/8.1.2...8.1.3) (2025-03-05)
1214

docs/versions/v2/Api/ActivitiesApi.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Name | Type | Description | Notes
144144
## `getActivities()`
145145

146146
```php
147-
getActivities($filter_id, $ids, $owner_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor): \Pipedrive\versions\v2\Model\GetActivities
147+
getActivities($filter_id, $ids, $owner_id, $deal_id, $lead_id, $person_id, $org_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor): \Pipedrive\versions\v2\Model\GetActivities
148148
```
149149

150150
Get all activities
@@ -176,6 +176,10 @@ $apiInstance = new Pipedrive\versions\v2\Api\ActivitiesApi(
176176
$filter_id = 56; // int | If supplied, only activities matching the specified filter are returned
177177
$ids = 'ids_example'; // string | Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response.
178178
$owner_id = 56; // int | If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored.
179+
$deal_id = 56; // int | If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored.
180+
$lead_id = 'lead_id_example'; // string | If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored.
181+
$person_id = 56; // int | If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored.
182+
$org_id = 56; // int | If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored.
179183
$updated_since = 'updated_since_example'; // string | If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z.
180184
$updated_until = 'updated_until_example'; // string | If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z.
181185
$sort_by = 'id'; // string | The field to sort by. Supported fields: `id`, `update_time`, `add_time`.
@@ -185,7 +189,7 @@ $limit = 100; // int | For pagination, the limit of entries to be returned. If n
185189
$cursor = 'cursor_example'; // string | For pagination, the marker (an opaque string value) representing the first item on the next page
186190

187191
try {
188-
$result = $apiInstance->getActivities($filter_id, $ids, $owner_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor);
192+
$result = $apiInstance->getActivities($filter_id, $ids, $owner_id, $deal_id, $lead_id, $person_id, $org_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor);
189193
print_r($result);
190194
} catch (Exception $e) {
191195
echo 'Exception when calling ActivitiesApi->getActivities: ', $e->getMessage(), PHP_EOL;
@@ -199,6 +203,10 @@ Name | Type | Description | Notes
199203
**filter_id** | **int**| If supplied, only activities matching the specified filter are returned | [optional]
200204
**ids** | **string**| Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response. | [optional]
201205
**owner_id** | **int**| If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored. | [optional]
206+
**deal_id** | **int**| If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. | [optional]
207+
**lead_id** | **string**| If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. | [optional]
208+
**person_id** | **int**| If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. | [optional]
209+
**org_id** | **int**| If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. | [optional]
202210
**updated_since** | **string**| If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. | [optional]
203211
**updated_until** | **string**| If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. | [optional]
204212
**sort_by** | **string**| The field to sort by. Supported fields: `id`, `update_time`, `add_time`. | [optional] [default to 'id']

docs/versions/v2/Api/BetaApi.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ Name | Type | Description | Notes
765765
## `getActivities()`
766766

767767
```php
768-
getActivities($filter_id, $ids, $owner_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor): \Pipedrive\versions\v2\Model\GetActivities
768+
getActivities($filter_id, $ids, $owner_id, $deal_id, $lead_id, $person_id, $org_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor): \Pipedrive\versions\v2\Model\GetActivities
769769
```
770770

771771
Get all activities
@@ -797,6 +797,10 @@ $apiInstance = new Pipedrive\versions\v2\Api\BetaApi(
797797
$filter_id = 56; // int | If supplied, only activities matching the specified filter are returned
798798
$ids = 'ids_example'; // string | Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response.
799799
$owner_id = 56; // int | If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored.
800+
$deal_id = 56; // int | If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored.
801+
$lead_id = 'lead_id_example'; // string | If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored.
802+
$person_id = 56; // int | If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored.
803+
$org_id = 56; // int | If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored.
800804
$updated_since = 'updated_since_example'; // string | If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z.
801805
$updated_until = 'updated_until_example'; // string | If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z.
802806
$sort_by = 'id'; // string | The field to sort by. Supported fields: `id`, `update_time`, `add_time`.
@@ -806,7 +810,7 @@ $limit = 100; // int | For pagination, the limit of entries to be returned. If n
806810
$cursor = 'cursor_example'; // string | For pagination, the marker (an opaque string value) representing the first item on the next page
807811

808812
try {
809-
$result = $apiInstance->getActivities($filter_id, $ids, $owner_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor);
813+
$result = $apiInstance->getActivities($filter_id, $ids, $owner_id, $deal_id, $lead_id, $person_id, $org_id, $updated_since, $updated_until, $sort_by, $sort_direction, $include_fields, $limit, $cursor);
810814
print_r($result);
811815
} catch (Exception $e) {
812816
echo 'Exception when calling BetaApi->getActivities: ', $e->getMessage(), PHP_EOL;
@@ -820,6 +824,10 @@ Name | Type | Description | Notes
820824
**filter_id** | **int**| If supplied, only activities matching the specified filter are returned | [optional]
821825
**ids** | **string**| Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response. | [optional]
822826
**owner_id** | **int**| If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored. | [optional]
827+
**deal_id** | **int**| If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. | [optional]
828+
**lead_id** | **string**| If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. | [optional]
829+
**person_id** | **int**| If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. | [optional]
830+
**org_id** | **int**| If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. | [optional]
823831
**updated_since** | **string**| If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. | [optional]
824832
**updated_until** | **string**| If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. | [optional]
825833
**sort_by** | **string**| The field to sort by. Supported fields: `id`, `update_time`, `add_time`. | [optional] [default to 'id']

docs/versions/v2/Model/GetActivities.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**success** | **bool** | If the response is successful or not | [optional]
88
**data** | [**\Pipedrive\versions\v2\Model\ActivityItem[]**](ActivityItem.md) | Activities array | [optional]
9+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/versions/v2/Model/GetActivitiesAllOf.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**data** | [**\Pipedrive\versions\v2\Model\ActivityItem[]**](ActivityItem.md) | Activities array | [optional]
8+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
89

910
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/versions/v2/Model/GetDeals.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**success** | **bool** | If the response is successful or not | [optional]
88
**data** | [**\Pipedrive\versions\v2\Model\DealItem[]**](DealItem.md) | Deals array | [optional]
9+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/versions/v2/Model/GetDealsAllOf.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**data** | [**\Pipedrive\versions\v2\Model\DealItem[]**](DealItem.md) | Deals array | [optional]
8+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
89

910
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/versions/v2/Model/GetPipelines.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**success** | **bool** | If the response is successful or not | [optional]
88
**data** | [**\Pipedrive\versions\v2\Model\PipelineItem[]**](PipelineItem.md) | Pipelines array | [optional]
9+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/versions/v2/Model/GetPipelinesAllOf.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**data** | [**\Pipedrive\versions\v2\Model\PipelineItem[]**](PipelineItem.md) | Pipelines array | [optional]
8+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
89

910
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/versions/v2/Model/GetStages.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**success** | **bool** | If the response is successful or not | [optional]
88
**data** | [**\Pipedrive\versions\v2\Model\StageItem[]**](StageItem.md) | The array of stages | [optional]
9+
**additional_data** | [**\Pipedrive\versions\v2\Model\AdditionalDataWithCursorPagination**](.md) | | [optional]
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

0 commit comments

Comments
 (0)