Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).

## [Unreleased]
### Removed
- Removed all endpoints of the Subscriptions feature
- GET /v1/subscriptions/{id}
- GET /v1/subscriptions/find/{dealId}
- GET /v1/subscriptions/{id}/payments
- POST /v1/subscriptions/recurring
- POST /v1/subscriptions/installment
- PUT /v1/subscriptions/recurring/{id}
- PUT /v1/subscriptions/installment/{id}
- PUT /v1/subscriptions/recurring/{id}/cancel
- DELETE /v1/subscriptions/{id}

## [28.0.2] - 2025-07-07
### Added
Expand Down
9 changes: 0 additions & 9 deletions docs/v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,15 +255,6 @@ StagesApi | getStage | **GET** /stages/{id} | Get one stage
StagesApi | getStageDeals | **GET** /stages/{id}/deals | Get deals in a stage
StagesApi | getStages | **GET** /stages | Get all stages
StagesApi | updateStage | **PUT** /stages/{id} | Update stage details
SubscriptionsApi | addRecurringSubscription | **POST** /subscriptions/recurring | Add a recurring subscription
SubscriptionsApi | addSubscriptionInstallment | **POST** /subscriptions/installment | Add an installment subscription
SubscriptionsApi | cancelRecurringSubscription | **PUT** /subscriptions/recurring/{id}/cancel | Cancel a recurring subscription
SubscriptionsApi | deleteSubscription | **DELETE** /subscriptions/{id} | Delete a subscription
SubscriptionsApi | findSubscriptionByDeal | **GET** /subscriptions/find/{dealId} | Find subscription by deal
SubscriptionsApi | getSubscription | **GET** /subscriptions/{id} | Get details of a subscription
SubscriptionsApi | getSubscriptionPayments | **GET** /subscriptions/{id}/payments | Get all payments of a subscription
SubscriptionsApi | updateRecurringSubscription | **PUT** /subscriptions/recurring/{id} | Update a recurring subscription
SubscriptionsApi | updateSubscriptionInstallment | **PUT** /subscriptions/installment/{id} | Update an installment subscription
TasksApi | addTask | **POST** /tasks | Add a task
TasksApi | deleteTask | **DELETE** /tasks/{id} | Delete a task
TasksApi | getTask | **GET** /tasks/{id} | Get details of a task
Expand Down
1 change: 0 additions & 1 deletion src/versions/v1/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export * from './api/projects-api';
export * from './api/recents-api';
export * from './api/roles-api';
export * from './api/stages-api';
export * from './api/subscriptions-api';
export * from './api/tasks-api';
export * from './api/user-connections-api';
export * from './api/user-settings-api';
Expand Down
11 changes: 0 additions & 11 deletions src/versions/v1/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export * from './add-product-request-all-of2';
export * from './add-project-request';
export * from './add-project-request-all-of';
export * from './add-project-response';
export * from './add-recurring-subscription-request';
export * from './add-remote-file-and-link-it-to-item-response';
export * from './add-role-assignment-request';
export * from './add-role-assignment-response';
Expand All @@ -89,7 +88,6 @@ export * from './add-roles-response';
export * from './add-roles-response-all-of';
export * from './add-roles-response-data';
export * from './add-stage-request';
export * from './add-subscription-installment-request';
export * from './add-task-request';
export * from './add-task-response';
export * from './add-team-request';
Expand Down Expand Up @@ -138,7 +136,6 @@ export * from './call-log-forbidden-response';
export * from './call-log-gone-response';
export * from './call-log-internal-error-response';
export * from './call-log-not-found-response';
export * from './cancel-recurring-subscription-request';
export * from './comment';
export * from './comment-post-put-object';
export * from './create-field-request';
Expand Down Expand Up @@ -438,9 +435,6 @@ export * from './get-organizations-response';
export * from './get-organizations-response-all-of';
export * from './get-organizations-response-all-of-related-objects';
export * from './get-participants-changelog-response';
export * from './get-payments-response';
export * from './get-payments-response-all-of';
export * from './get-payments-response-all-of-data-inner';
export * from './get-permission-set-response';
export * from './get-permission-set-response-all-of';
export * from './get-permission-sets-response';
Expand Down Expand Up @@ -548,8 +542,6 @@ export * from './get-stages-response';
export * from './get-stages-response-data-inner';
export * from './get-subscription-addons-response';
export * from './get-subscription-addons-response-all-of';
export * from './get-subscriptions-id-response';
export * from './get-subscriptions-id-response-data';
export * from './get-task-response';
export * from './get-tasks-response';
export * from './get-team-response';
Expand Down Expand Up @@ -732,7 +724,6 @@ export * from './stage';
export * from './stage-with-pipeline-info';
export * from './sub-role';
export * from './sub-role-all-of';
export * from './subscription-item';
export * from './task-response-object';
export * from './task-response-object-all-of';
export * from './team-id';
Expand Down Expand Up @@ -777,13 +768,11 @@ export * from './update-project-request1-all-of1';
export * from './update-project-request1-all-of2';
export * from './update-project-request2';
export * from './update-project-response';
export * from './update-recurring-subscription-request';
export * from './update-role-response';
export * from './update-role-response-all-of';
export * from './update-role-response-data';
export * from './update-stage-request';
export * from './update-stage-request-all-of';
export * from './update-subscription-installment-request';
export * from './update-task-plan-item-response';
export * from './update-task-response';
export * from './update-team-request';
Expand Down
Loading