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
*DealsApi* | [**getDealFollowers**](docs/Api/DealsApi.md#getdealfollowers) | **GET** /deals/{id}/followers | List followers of a deal
350
350
*DealsApi* | [**getDealMailMessages**](docs/Api/DealsApi.md#getdealmailmessages) | **GET** /deals/{id}/mailMessages | List mail messages associated with a deal
351
351
*DealsApi* | [**getDealParticipants**](docs/Api/DealsApi.md#getdealparticipants) | **GET** /deals/{id}/participants | List participants of a deal
352
+
*DealsApi* | [**getDealParticipantsChangelog**](docs/Api/DealsApi.md#getdealparticipantschangelog) | **GET** /deals/{id}/participantsChangelog | List updates about participants of a deal
352
353
*DealsApi* | [**getDealPersons**](docs/Api/DealsApi.md#getdealpersons) | **GET** /deals/{id}/persons | List all persons associated with a deal
353
354
*DealsApi* | [**getDealProducts**](docs/Api/DealsApi.md#getdealproducts) | **GET** /deals/{id}/products | List products attached to a deal
354
355
*DealsApi* | [**getDealUpdates**](docs/Api/DealsApi.md#getdealupdates) | **GET** /deals/{id}/flow | List updates about a deal
[**getDealFollowers()**](DealsApi.md#getDealFollowers) | **GET** /deals/{id}/followers | List followers of a deal
21
21
[**getDealMailMessages()**](DealsApi.md#getDealMailMessages) | **GET** /deals/{id}/mailMessages | List mail messages associated with a deal
22
22
[**getDealParticipants()**](DealsApi.md#getDealParticipants) | **GET** /deals/{id}/participants | List participants of a deal
23
+
[**getDealParticipantsChangelog()**](DealsApi.md#getDealParticipantsChangelog) | **GET** /deals/{id}/participantsChangelog | List updates about participants of a deal
23
24
[**getDealPersons()**](DealsApi.md#getDealPersons) | **GET** /deals/{id}/persons | List all persons associated with a deal
24
25
[**getDealProducts()**](DealsApi.md#getDealProducts) | **GET** /deals/{id}/products | List products attached to a deal
25
26
[**getDealUpdates()**](DealsApi.md#getDealUpdates) | **GET** /deals/{id}/flow | List updates about a deal
@@ -1108,6 +1109,75 @@ Name | Type | Description | Notes
List updates about participants of a deal. This is a cursor-paginated endpoint. For more information, please refer to our documentation on <a href=\"https://pipedrive.readme.io/docs/core-api-concepts-pagination\" target=\"_blank\" rel=\"noopener noreferrer\">pagination</a>.
1121
+
1122
+
### Example
1123
+
1124
+
```php
1125
+
<?php
1126
+
require_once(__DIR__ . '/vendor/autoload.php');
1127
+
1128
+
1129
+
// Configure API key authorization: api_key
1130
+
$config = (new Pipedrive\Configuration())->setApiKey('api_token', 'YOUR_API_KEY');
1131
+
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
1132
+
// $config = (new Pipedrive\Configuration())->setApiKeyPrefix('api_token', 'Bearer');
1133
+
1134
+
// Configure OAuth2 access token for authorization: oauth2
1135
+
$config = (new Pipedrive\Configuration())->setAccessToken('YOUR_ACCESS_TOKEN');
1136
+
1137
+
1138
+
$apiInstance = new Pipedrive\Api\DealsApi(
1139
+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
1140
+
// This is optional, `GuzzleHttp\Client` will be used as default.
1141
+
new GuzzleHttp\Client(),
1142
+
$config
1143
+
);
1144
+
$id = 56; // int | The ID of the deal
1145
+
$limit = 56; // int | Items shown per page
1146
+
$cursor = 'cursor_example'; // string | For pagination, the marker (an opaque string value) representing the first item on the next page
0 commit comments