Skip to content

Commit a8392e8

Browse files
author
pipedrive-bot
committed
Build 242 - version-patch
1 parent fcb5367 commit a8392e8

4 files changed

Lines changed: 21 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
77
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).
88

99
## [Unreleased]
10+
### Added
11+
- Documented `address` property in the Organization v2 API for add and update endpoints:
12+
- `POST /v2/organizations`
13+
- `PATCH /v2/organizations/{id}`
1014

1115
## [27.2.0] - 2025-06-02
1216
### Changed

src/versions/v2/models/add-organization-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

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

1720
/**
1821
*
@@ -50,5 +53,10 @@ export interface AddOrganizationRequest {
5053
* @type {Array<number>}
5154
*/
5255
'label_ids'?: Array<number>;
56+
/**
57+
*
58+
* @type {OrganizationItemAddress}
59+
*/
60+
'address'?: OrganizationItemAddress;
5361
}
5462

src/versions/v2/models/organization-item-address.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
/**
18-
*
18+
* The address of the organization
1919
* @export
2020
* @interface OrganizationItemAddress
2121
*/

src/versions/v2/models/update-organization-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

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

1720
/**
1821
*
@@ -50,5 +53,10 @@ export interface UpdateOrganizationRequest {
5053
* @type {Array<number>}
5154
*/
5255
'label_ids'?: Array<number>;
56+
/**
57+
*
58+
* @type {OrganizationItemAddress}
59+
*/
60+
'address'?: OrganizationItemAddress;
5361
}
5462

0 commit comments

Comments
 (0)