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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,31 @@
1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## [11.0.0] - revision 2024-07-15
5
+
6
+
### Added
7
+
8
+
- Forms API
9
+
- New `FormsApi` class with methods to get forms, form versions and relationships.
10
+
- Webhooks API
11
+
- New `WebooksApi` class containing CRUD operations for webhooks.
12
+
- FilterBuilder class
13
+
- New class to help build filters in the correct format for endpoints that use them.
14
+
- See the README for more information and usage examples.
15
+
16
+
### Changed
17
+
-`ProfilesApi.subscribe()`
18
+
- added `historical_import` flag for importing historically consented profiles can now be optionally supplied in the payload for the Subscribe Profiles endpoint.
19
+
- When using this flag, a `consented_at` date must be provided and must be in the past.
20
+
21
+
4
22
## [10.1.0] - revision 2024-06-15
5
23
6
24
### Added
7
25
- Segments Api
8
26
- New create segment endpoint `SegmentsApi.createSegment()`.
9
27
- New delete segment endpoint `SegementsApi.deleteSegment()`.
10
-
- Updated exisiting segments endpoints to include the segment definition
28
+
- Updated existing segments endpoints to include the segment definition
11
29
- For more information, see our [Segments API overview](https://developers.klaviyo.com/en/reference/segments_api_overview).
Copy file name to clipboardExpand all lines: api/accountsApi.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ export class AccountsApi {
68
68
* Retrieve a single account object by its account ID. You can only request the account by which the private API key was generated.<br><br>*Rate limits*:<br>Burst: `1/s`<br>Steady: `15/m` **Scopes:** `accounts:read`
69
69
* @summary Get Account
70
70
* @param id The ID of the account
71
-
* @param fieldsAccount For more information please visit https://developers.klaviyo.com/en/v2024-06-15/reference/api-overview#sparse-fieldsets
71
+
* @param fieldsAccount For more information please visit https://developers.klaviyo.com/en/v2024-07-15/reference/api-overview#sparse-fieldsets
* Retrieve the account(s) associated with a given private API key. This will return 1 account object within the array. You can use this to retrieve account-specific data (contact information, timezone, currency, Public API key, etc.) or test if a Private API Key belongs to the correct account prior to performing subsequent actions with the API.<br><br>*Rate limits*:<br>Burst: `1/s`<br>Steady: `15/m` **Scopes:** `accounts:read`
129
129
* @summary Get Accounts
130
130
131
-
* @param fieldsAccount For more information please visit https://developers.klaviyo.com/en/v2024-06-15/reference/api-overview#sparse-fieldsets
131
+
* @param fieldsAccount For more information please visit https://developers.klaviyo.com/en/v2024-07-15/reference/api-overview#sparse-fieldsets
0 commit comments