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
Marks multiple activities as deleted. After 30 days, the activities will be permanently deleted. <br>This endpoint has been deprecated. Please use <a href=\"https://developers.pipedrive.com/docs/api/v1/Activities#deleteActivity\" target=\"_blank\" rel=\"noopener noreferrer\">DELETE /api/v2/activities/{id}</a> instead.
90
-
91
-
### Example
92
-
93
-
```php
94
-
<?php
95
-
require_once(__DIR__ . '/vendor/autoload.php');
96
-
97
-
98
-
// Configure API key authorization: api_key
99
-
$config = (new Pipedrive\versions\v1\Configuration())->setApiKey('x-api-token', 'YOUR_API_KEY');
100
-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
101
-
// $config = (new Pipedrive\versions\v1\Configuration())->setApiKeyPrefix('x-api-token', 'Bearer');
102
-
103
-
// Configure OAuth2 access token for authorization: oauth2
104
-
$config = (new Pipedrive\versions\v1\Configuration())->setAccessToken('YOUR_ACCESS_TOKEN');
105
-
106
-
107
-
$apiInstance = new Pipedrive\versions\v1\Api\ActivitiesApi(
108
-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
109
-
// This is optional, `GuzzleHttp\Client` will be used as default.
110
-
new GuzzleHttp\Client(),
111
-
$config
112
-
);
113
-
$ids = 'ids_example'; // string | The comma-separated IDs of activities that will be deleted
114
-
115
-
try {
116
-
$result = $apiInstance->deleteActivities($ids);
117
-
print_r($result);
118
-
} catch (Exception $e) {
119
-
echo 'Exception when calling ActivitiesApi->deleteActivities: ', $e->getMessage(), PHP_EOL;
[**deleteDealFollower()**](DealsApi.md#deleteDealFollower) | **DELETE** /deals/{id}/followers/{follower_id} | Delete a follower from a deal
13
13
[**deleteDealParticipant()**](DealsApi.md#deleteDealParticipant) | **DELETE** /deals/{id}/participants/{deal_participant_id} | Delete a participant from a deal
14
14
[**deleteDealProduct()**](DealsApi.md#deleteDealProduct) | **DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal
15
-
[**deleteDeals()**](DealsApi.md#deleteDeals) | **DELETE** /deals | Delete multiple deals in bulk
Marks multiple deals as deleted. After 30 days, the deals will be permanently deleted. <br>This endpoint has been deprecated. Please use <a href=\"https://developers.pipedrive.com/docs/api/v1/Deals#deleteDeal\" target=\"_blank\" rel=\"noopener noreferrer\">DELETE /api/v2/deals/{id}</a> instead.
583
-
584
-
### Example
585
-
586
-
```php
587
-
<?php
588
-
require_once(__DIR__ . '/vendor/autoload.php');
589
-
590
-
591
-
// Configure API key authorization: api_key
592
-
$config = (new Pipedrive\versions\v1\Configuration())->setApiKey('x-api-token', 'YOUR_API_KEY');
593
-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
594
-
// $config = (new Pipedrive\versions\v1\Configuration())->setApiKeyPrefix('x-api-token', 'Bearer');
595
-
596
-
// Configure OAuth2 access token for authorization: oauth2
597
-
$config = (new Pipedrive\versions\v1\Configuration())->setAccessToken('YOUR_ACCESS_TOKEN');
598
-
599
-
600
-
$apiInstance = new Pipedrive\versions\v1\Api\DealsApi(
601
-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
602
-
// This is optional, `GuzzleHttp\Client` will be used as default.
603
-
new GuzzleHttp\Client(),
604
-
$config
605
-
);
606
-
$ids = 'ids_example'; // string | The comma-separated IDs that will be deleted
607
-
608
-
try {
609
-
$result = $apiInstance->deleteDeals($ids);
610
-
print_r($result);
611
-
} catch (Exception $e) {
612
-
echo 'Exception when calling DealsApi->deleteDeals: ', $e->getMessage(), PHP_EOL;
[**addOrganizationFollower()**](OrganizationsApi.md#addOrganizationFollower) | **POST** /organizations/{id}/followers | Add a follower to an organization
9
9
[**deleteOrganization()**](OrganizationsApi.md#deleteOrganization) | **DELETE** /organizations/{id} | Delete an organization
10
10
[**deleteOrganizationFollower()**](OrganizationsApi.md#deleteOrganizationFollower) | **DELETE** /organizations/{id}/followers/{follower_id} | Delete a follower from an organization
11
-
[**deleteOrganizations()**](OrganizationsApi.md#deleteOrganizations) | **DELETE** /organizations | Delete multiple organizations in bulk
12
11
[**getOrganization()**](OrganizationsApi.md#getOrganization) | **GET** /organizations/{id} | Get details of an organization
13
12
[**getOrganizationActivities()**](OrganizationsApi.md#getOrganizationActivities) | **GET** /organizations/{id}/activities | List activities associated with an organization
14
13
[**getOrganizationChangelog()**](OrganizationsApi.md#getOrganizationChangelog) | **GET** /organizations/{id}/changelog | List updates about organization field values
@@ -290,71 +289,6 @@ Name | Type | Description | Notes
290
289
[[Back to Model list]](../README.md#documentation-for-models)
Marks multiple organizations as deleted. After 30 days, the organizations will be permanently deleted. <br>This endpoint has been deprecated. Please use <a href=\"https://developers.pipedrive.com/docs/api/v1/Organizations#deleteOrganization\" target=\"_blank\" rel=\"noopener noreferrer\">DELETE /api/v2/organizations/{id}</a> instead.
302
-
303
-
### Example
304
-
305
-
```php
306
-
<?php
307
-
require_once(__DIR__ . '/vendor/autoload.php');
308
-
309
-
310
-
// Configure API key authorization: api_key
311
-
$config = (new Pipedrive\versions\v1\Configuration())->setApiKey('x-api-token', 'YOUR_API_KEY');
312
-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
313
-
// $config = (new Pipedrive\versions\v1\Configuration())->setApiKeyPrefix('x-api-token', 'Bearer');
314
-
315
-
// Configure OAuth2 access token for authorization: oauth2
316
-
$config = (new Pipedrive\versions\v1\Configuration())->setAccessToken('YOUR_ACCESS_TOKEN');
317
-
318
-
319
-
$apiInstance = new Pipedrive\versions\v1\Api\OrganizationsApi(
320
-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
321
-
// This is optional, `GuzzleHttp\Client` will be used as default.
322
-
new GuzzleHttp\Client(),
323
-
$config
324
-
);
325
-
$ids = 'ids_example'; // string | The comma-separated IDs that will be deleted
0 commit comments