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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ 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]
### Added
- Documented `address` property in the Organization v2 API for add and update endpoints:
- `POST /v2/organizations`
- `PATCH /v2/organizations/{id}`

## [27.2.0] - 2025-06-02
### Changed
Expand Down
8 changes: 8 additions & 0 deletions src/versions/v2/models/add-organization-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/


// May contain unused imports in some cases
// @ts-ignore
import { OrganizationItemAddress } from './organization-item-address';

/**
*
Expand Down Expand Up @@ -50,5 +53,10 @@ export interface AddOrganizationRequest {
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
*
* @type {OrganizationItemAddress}
*/
'address'?: OrganizationItemAddress;
}

2 changes: 1 addition & 1 deletion src/versions/v2/models/organization-item-address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


/**
*
* The address of the organization
* @export
* @interface OrganizationItemAddress
*/
Expand Down
8 changes: 8 additions & 0 deletions src/versions/v2/models/update-organization-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/


// May contain unused imports in some cases
// @ts-ignore
import { OrganizationItemAddress } from './organization-item-address';

/**
*
Expand Down Expand Up @@ -50,5 +53,10 @@ export interface UpdateOrganizationRequest {
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
*
* @type {OrganizationItemAddress}
*/
'address'?: OrganizationItemAddress;
}

Loading