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
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,34 @@
1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## [8.0.0-beta.1] - revision 2024-02-15
5
+
6
+
### Added:
7
+
8
+
- New `ReportingApi` allows you to request campaign and flow performance data that you can view in the Klaviyo UI.
9
+
10
+
-`campaignValuesQuery`
11
+
- Request campaign analytics data, for example, a campaign performance report on the open rate over the past 30 days.
12
+
13
+
-`flowValuesQuery`
14
+
- Request flow analytics data, for example, a flow performance report on the revenue per recipient value over the past 3 months.
15
+
16
+
-`flowSeriesQuery`
17
+
- Fetch flow series data for a specific interval and timeframe, for example, a flow performance report on weekly click rates over the past 12 months.
18
+
19
+
20
+
- New `ProfilesApi` endpoint allows you to create or update a profile with a set of profile attributes.
21
+
22
+
-`createOrUpdateProfile`
23
+
- This endpoint operates synchronously and offers an upsert pattern similar to the [v1/v2 Identify API](https://developers.klaviyo.com/en/docs/apis_comparison_chart).
24
+
25
+
### Changed:
26
+
27
+
- Removed the $attribution field from event_properties in get_event and get_events (breaking change).
28
+
29
+
- To include this data in your request, add include=attributions to your request.
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/v2023-12-15/reference/api-overview#sparse-fieldsets
71
+
* @param fieldsAccount For more information please visit https://developers.klaviyo.com/en/v2024-02-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/v2023-12-15/reference/api-overview#sparse-fieldsets
131
+
* @param fieldsAccount For more information please visit https://developers.klaviyo.com/en/v2024-02-15/reference/api-overview#sparse-fieldsets
0 commit comments