-
SDK version: 8.0.0
-
Revision: 2024-02-15
- If you want to suggest code changes check out our
CONTRIBUTING.md
document. - To learn about migration from our 5.x.x version check out the
MIGRATION.md
file. - Read version changes in
CHANGELOG.md
.
This SDK is a thin wrapper around our API. See our API Reference for full documentation on API behavior.
This SDK exactly mirrors the organization and naming convention of the above language-agnostic resources, with a few namespace changes to make it fit better with Typescript
This SDK is organized into the following resources:
- AccountsApi
- CampaignsApi
- CatalogsApi
- CouponsApi
- DataPrivacyApi
- EventsApi
- FlowsApi
- ImagesApi
- ListsApi
- MetricsApi
- ProfilesApi
- ReportingApi
- SegmentsApi
- TagsApi
- TemplatesApi
You can install this library using npm
.
npm install [email protected]
Alternatively, you can also run this using this repo as source code, simply download this repo then connect to your app putting the path in your package.json or via npm link
path: add this line to your apps package.json
"klaviyo-api": "< path to downloaded source code >"
npm link:
run npm link
in your local copy of this repo's directory
run npm link <"path to this repo">
first in your consuming app's directory
Sample file:
If you want to test out the repo but don't have a consuming app, you can run our sample typescript file, make whatever edits you want to sample.ts
in the sample
folder and use
npm run sample --pk=<YOUR PRIVATE KEY HERE>
To read about our OAuth beta for users who want to write multi-user integrations, check out this help center article
If you already are in the OAuth beta, read the documentation in the oauth-beta
branch in this repo or check out the example application.
Install the beta package with the following command:
npm i klaviyo-api@beta
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
import {
ApiKeySession,
ProfileCreateQuery,
ProfileEnum,
ProfilesApi,
} from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
let profile: ProfileCreateQuery = {
data: {
type: ProfileEnum.Profile,
attributes: {
email: "[email protected]"
}
}
}
profilesApi.createProfile(profile).then(result => {
console.log(result)
}).catch(error => {
console.log(error)
});
Constructing an API object also has optional property RetryOptions
, this acts as a light wrapper with some different defaults around the exponential-backoff
library
you can override - maxRetryAttempts - timeMultiple - startingDelay
const retryOptions: RetryOptions = new RetryOptions(3, 5, 500)
const session = new ApiKeySession("< YOUR API KEY HERE >", retryOptions)
if you have used exponential backoff before you can bypass the all the settings by just setting the options with a BackoffOptions
object
const retryOptions: RetryOptions = new RetryOptions()
retryOptions.options = { "BUILD YOUR OWN BackoffOptions object here" }
There is also an optional Klaviyo
import that has all the Apis and Auth, if you prefer that method for organization.
import { Klaviyo } from 'klaviyo-api'
const profilesApi = new Klaviyo.ProfilesApi(new Klaviyo.Auth.ApiKeySession("< YOUR API KEY HERE >", retryOptions))
Failed api calls throw an AxiosError.
The two most commonly useful error items are probably
- error.response.status
- error.response.statusText
Here is an example of logging those errors to the console
profilesApi.createProfile(profile).then(result => {
console.log(result.body)
}).catch(error => {
console.log(error.response.status)
console.log(error.response.statusText)
});
The ImageApi
exposes uploadImageFromFile()
import fs from 'fs'
import {ApiKeySession, ImageApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const imageApi = new ImagesApi(session)
imageApi.uploadImageFromFile(fs.createReadStream("./test_image.jpeg")).then(result => {
console.log(result.body)
}).catch(error => {
console.log(error)
}
If you only connect to one Klaviyo account you may find it useful to access preconfigured objects.
Set a global key, If you were using ConfigWrapper
this also sets the GlobalApiKeySettings
import { GlobalApiKeySettings } from 'klaviyo-api'
new GlobalApiKeySettings("< YOUR API KEY HERE >")
Now you can use the shortened names ProfilesApi
can be referenced with Profiles
import { Profiles, GlobalApiKeySettings } from 'klaviyo-api'
new GlobalApiKeySettings("< YOUR API KEY HERE >")
Profiles.getProfiles().then(result => {
console.log(result.body)
}).catch(error => {
console.log(error.response.status)
console.log(error.response.statusText)
});
Optional Parameters and JSON:API features
Here we will go over
- Pagination
- Page size
- Additional Fields
- Filtering
- Sparse Fields
- Sorting
- Relationships
As a reminder, some optional parameters are named slightly differently from how you would make the call without the SDK docs;
the reason for this is that some query parameter names have variables that make for bad JavaScript names.
For example: page[cursor]
becomes pageCursor
. (In short: remove the non-allowed characters and append words with camelCase).
All the endpoints that return a list of results use cursor-based pagination.
Obtain the cursor value from the call you want to get the next page for, then pass it under the pageCursor
optional parameter. The page cursor looks like WzE2NDA5OTUyMDAsICIzYzRjeXdGTndadyIsIHRydWVd
.
API call:
https://a.klaviyo.com/api/profiles/?page[cursor]=WzE2NTcyMTM4NjQsICIzc042NjRyeHo0ciIsIHRydWVd
SDK call:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const profileList = await profilesApi.getProfiles({pageCursor: 'WzE2NTcyMTM4NjQsICIzc042NjRyeHo0ciIsIHRydWVd'})
You get the cursor for the next
page from body.link.next
. This returns the entire url of the next call,
but the SDK will accept the entire link and use only the relevant cursor, so no need to do any parsing of the next
link on your end
Here is an example of getting the second next and passing in the page cursor:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
try {
const profilesListFirstPage = await profilesApi.getProfiles()
const nextPage = profilesListFirstPage.body.links.next
const profileListSecondPage = await profilesApi.getProfiles({pageCursor: nextPage})
console.log(profileListSecondPage.body)
} catch (e) {
console.log(e)
}
There are more page cursors than just next
: first
, last
, next
and prev
. Check the API Reference for all the paging params for a given endpoint.
Some endpoints allow you to set the page size by using the pageSize
parameter.
API call:
https://a.klaviyo.com/api/profiles/?page[size]=20
SDK call:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const profileList = await profilesApi.getProfiles({pageCursor: nextPage})
Additional fields are used to populate parts of the response that would be null
otherwise.
For example, for the getProfile
, endpoint you can pass in a request to get the predictive analytics of the profile. Using the additionalFields
parameter does impact the rate limit of the endpoint in cases where the related resource is subject to a lower rate limit, so be sure to keep an eye on your usage.
API call:
https://a.klaviyo.com/api/profiles/01GDDKASAP8TKDDA2GRZDSVP4H/?additional-fields[profile]=predictive_analytics
SDK call:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const profileId = '01GDDKASAP8TKDDA2GRZDSVP4H'
const profile = await profilesApi.getProfile(profileId, {additionalFieldsProfile: ['predictive_analytics']})
// If your profile has enough information for predictive analytis it will populate
console.log(profile.body.data.attributes.predictiveAnalytics)
You can filter responses by passing a string into the optional parameter filter
. Note that when filtering by a property it will be snake_case instead of camelCase, ie. metric_id
Read more about formatting your filter strings in our developer documentation
Here is an example of a filter string for results between two date times: less-than(updated,2023-04-26T00:00:00Z),greater-than(updated,2023-04-19T00:00:00Z)
Here is a code example to filter for profiles with the matching emails:
https://a.klaviyo.com/api/profiles/?filter=any(email,["[email protected]","[email protected]"]
SDK call:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const filter = 'any(email,["[email protected]","[email protected]"])'
const profileList = await profilesApi.getProfiles({filter})
If you only want a specific subset of data from a specific query you can use sparse fields to request only the specific properties. The SDK expands the optional sparse fields into their own option, where you can pass a list of the desired items to include.
To get a list of event properties the API call you would use is:
https://a.klaviyo.com/api/events/?fields[event]=event_properties
SDK call:
import { ApiKeySession, EventsApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const eventsApi = new EventsApi(session)
const eventsList = await eventsApi.getEvents({fieldsEvent: ["event_properties"]})
Your can request the results of specific endpoints to be ordered by a given parameter. The direction of the sort can be reversed by adding a -
in front of the sort key.
For example datetime
will be ascending while -datetime
will be descending.
If you are unsure about the available sort fields, refer to the API Reference page for the endpoint you are using. For a comprehensive list that links to the documentation for each function check the Endpoints section below.
API Call to get events sorted by oldest to newest datetime:
https://a.klaviyo.com/api/events/?sort=-datetime
SDK call:
import { ApiKeySession, EventsApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const eventsApi = new EventsApi(session)
const events = await eventsApi.getEvents({sort: '-datetime'})
You can add additional information to your API response via additional fields and the includes parameter. This allows you to get information about two or more objects from a single API call. Using the includes parameter often changes the rate limit of the endpoint so be sure to take note.
API call to get profile information and the information about the lists the profile is in:
https://a.klaviyo.com/api/profiles/01GDDKASAP8TKDDA2GRZDSVP4H/?include=lists
SDK call:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const profileId = '01GDDKASAP8TKDDA2GRZDSVP4H'
const profile = await profilesApi.getProfile(profileId,{include:["lists"]})
// Profile information is accessed the same way with
console.log(profile.body.data)
// Lists related to the profile with be accessible via the included array
console.log(profile.body.included)
Note about sparse fields and relationships: you can also request only specific fields for the included object as well.
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const profileId = '01GDDKASAP8TKDDA2GRZDSVP4H'
// Use the fieldsLists property to request only the list name
const profile = await profilesApi.getProfile(profileId, {fieldsList: ['name'], include: ["lists"]})
// Profile information is accessed the same way with
console.log(profile.body.data)
// Lists related to the profile with be accessible via the included array
console.log(profile.body.included)
The Klaviyo API has a series of endpoints to expose the relationships between different Klaviyo Items. You can read more about relationships in our documentation.
Here are some use cases and their examples:
API call to get the list membership for a profile with the given profile ID:
https://a.klaviyo.com/api/profiles/01GDDKASAP8TKDDA2GRZDSVP4H/relationships/lists/
SDK call:
import { ApiKeySession, ProfilesApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const profilesApi = new ProfilesApi(session)
const profileId = '01GDDKASAP8TKDDA2GRZDSVP4H'
const profileRelationships = await profilesApi.getProfileRelationshipsLists(profileId)
For another example:
Get all campaigns associated with the given tag_id
.
API call:
https://a.klaviyo.com/api/tags/9c8db7a0-5ab5-4e3c-9a37-a3224fd14382/relationships/campaigns/
SDK call:
import { ApiKeySession, TagsApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const tagsApi = new TagsApi(session)
const tagId = '9c8db7a0-5ab5-4e3c-9a37-a3224fd14382'
const relatedCampagins = tagsApi.getTagRelationshipsCampaigns(tagId)
You can use any combination of the features outlines above in conjunction with one another.
API call to get events associated with a specific metric, then return just the event properties sorted by oldest to newest datetime:
API call:
https://a.klaviyo.com/api/events/?fields[event]=event_properties&filter=equals(metric_id,"URDbLg")&sort=-datetime
SDK call:
import { ApiKeySession, EventsApi } from 'klaviyo-api'
const session = new ApiKeySession("< YOUR API KEY HERE >")
const eventsApi = new EventsApi(session)
const metricId = 'URDbLg'
const filter = `equal(metric_id,"${metricId}")`
const events = await eventsApi.getEvents({fieldsEvent: ['event_properties'], sort: '-datetime', filter})
AccountsApi.getAccount(id: string, options)
AccountsApi.getAccounts(options)
CampaignsApi.createCampaign(campaignCreateQuery: CampaignCreateQuery)
CampaignsApi.createCampaignClone(campaignCloneQuery: CampaignCloneQuery)
Assign Campaign Message Template
CampaignsApi.createCampaignMessageAssignTemplate(campaignMessageAssignTemplateQuery: CampaignMessageAssignTemplateQuery)
Create Campaign Recipient Estimation Job
CampaignsApi.createCampaignRecipientEstimationJob(campaignRecipientEstimationJobCreateQuery: CampaignRecipientEstimationJobCreateQuery)
CampaignsApi.createCampaignSendJob(campaignSendJobCreateQuery: CampaignSendJobCreateQuery)
CampaignsApi.deleteCampaign(id: string)
CampaignsApi.getCampaign(id: string, options)
Get Campaign Campaign Messages
CampaignsApi.getCampaignCampaignMessages(id: string, options)
CampaignsApi.getCampaignMessage(id: string, options)
CampaignsApi.getCampaignMessageCampaign(id: string, options)
Get Campaign Message Relationships Campaign
CampaignsApi.getCampaignMessageRelationshipsCampaign(id: string)
Get Campaign Message Relationships Template
CampaignsApi.getCampaignMessageRelationshipsTemplate(id: string)
CampaignsApi.getCampaignMessageTemplate(id: string, options)
Get Campaign Recipient Estimation
CampaignsApi.getCampaignRecipientEstimation(id: string, options)
Get Campaign Recipient Estimation Job
CampaignsApi.getCampaignRecipientEstimationJob(id: string, options)
Get Campaign Relationships Campaign Messages
CampaignsApi.getCampaignRelationshipsCampaignMessages(id: string)
Get Campaign Relationships Tags
CampaignsApi.getCampaignRelationshipsTags(id: string)
CampaignsApi.getCampaignSendJob(id: string, options)
CampaignsApi.getCampaignTags(id: string, options)
CampaignsApi.getCampaigns(filter: string, options)
CampaignsApi.updateCampaign(id: string, campaignPartialUpdateQuery: CampaignPartialUpdateQuery)
CampaignsApi.updateCampaignMessage(id: string, campaignMessagePartialUpdateQuery: CampaignMessagePartialUpdateQuery)
CampaignsApi.updateCampaignSendJob(id: string, campaignSendJobPartialUpdateQuery: CampaignSendJobPartialUpdateQuery)
Create Back In Stock Subscription
CatalogsApi.createBackInStockSubscription(serverBISSubscriptionCreateQuery: ServerBISSubscriptionCreateQuery)
CatalogsApi.createCatalogCategory(catalogCategoryCreateQuery: CatalogCategoryCreateQuery)
Create Catalog Category Relationships Items
CatalogsApi.createCatalogCategoryRelationshipsItems(id: string, catalogCategoryItemOp: CatalogCategoryItemOp)
CatalogsApi.createCatalogItem(catalogItemCreateQuery: CatalogItemCreateQuery)
Create Catalog Item Relationships Categories
CatalogsApi.createCatalogItemRelationshipsCategories(id: string, catalogItemCategoryOp: CatalogItemCategoryOp)
CatalogsApi.createCatalogVariant(catalogVariantCreateQuery: CatalogVariantCreateQuery)
CatalogsApi.deleteCatalogCategory(id: string)
Delete Catalog Category Relationships Items
CatalogsApi.deleteCatalogCategoryRelationshipsItems(id: string, catalogCategoryItemOp: CatalogCategoryItemOp)
CatalogsApi.deleteCatalogItem(id: string)
Delete Catalog Item Relationships Categories
CatalogsApi.deleteCatalogItemRelationshipsCategories(id: string, catalogItemCategoryOp: CatalogItemCategoryOp)
CatalogsApi.deleteCatalogVariant(id: string)
CatalogsApi.getCatalogCategories(options)
CatalogsApi.getCatalogCategory(id: string, options)
CatalogsApi.getCatalogCategoryItems(id: string, options)
Get Catalog Category Relationships Items
CatalogsApi.getCatalogCategoryRelationshipsItems(id: string, options)
CatalogsApi.getCatalogItem(id: string, options)
CatalogsApi.getCatalogItemCategories(id: string, options)
Get Catalog Item Relationships Categories
CatalogsApi.getCatalogItemRelationshipsCategories(id: string, options)
CatalogsApi.getCatalogItemVariants(id: string, options)
CatalogsApi.getCatalogItems(options)
CatalogsApi.getCatalogVariant(id: string, options)
CatalogsApi.getCatalogVariants(options)
CatalogsApi.getCreateCategoriesJob(jobId: string, options)
CatalogsApi.getCreateCategoriesJobs(options)
CatalogsApi.getCreateItemsJob(jobId: string, options)
CatalogsApi.getCreateItemsJobs(options)
CatalogsApi.getCreateVariantsJob(jobId: string, options)
CatalogsApi.getCreateVariantsJobs(options)
CatalogsApi.getDeleteCategoriesJob(jobId: string, options)
CatalogsApi.getDeleteCategoriesJobs(options)
CatalogsApi.getDeleteItemsJob(jobId: string, options)
CatalogsApi.getDeleteItemsJobs(options)
CatalogsApi.getDeleteVariantsJob(jobId: string, options)
CatalogsApi.getDeleteVariantsJobs(options)
CatalogsApi.getUpdateCategoriesJob(jobId: string, options)
CatalogsApi.getUpdateCategoriesJobs(options)
CatalogsApi.getUpdateItemsJob(jobId: string, options)
CatalogsApi.getUpdateItemsJobs(options)
CatalogsApi.getUpdateVariantsJob(jobId: string, options)
CatalogsApi.getUpdateVariantsJobs(options)
CatalogsApi.spawnCreateCategoriesJob(catalogCategoryCreateJobCreateQuery: CatalogCategoryCreateJobCreateQuery)
CatalogsApi.spawnCreateItemsJob(catalogItemCreateJobCreateQuery: CatalogItemCreateJobCreateQuery)
CatalogsApi.spawnCreateVariantsJob(catalogVariantCreateJobCreateQuery: CatalogVariantCreateJobCreateQuery)
CatalogsApi.spawnDeleteCategoriesJob(catalogCategoryDeleteJobCreateQuery: CatalogCategoryDeleteJobCreateQuery)
CatalogsApi.spawnDeleteItemsJob(catalogItemDeleteJobCreateQuery: CatalogItemDeleteJobCreateQuery)
CatalogsApi.spawnDeleteVariantsJob(catalogVariantDeleteJobCreateQuery: CatalogVariantDeleteJobCreateQuery)
CatalogsApi.spawnUpdateCategoriesJob(catalogCategoryUpdateJobCreateQuery: CatalogCategoryUpdateJobCreateQuery)
CatalogsApi.spawnUpdateItemsJob(catalogItemUpdateJobCreateQuery: CatalogItemUpdateJobCreateQuery)
CatalogsApi.spawnUpdateVariantsJob(catalogVariantUpdateJobCreateQuery: CatalogVariantUpdateJobCreateQuery)
CatalogsApi.updateCatalogCategory(id: string, catalogCategoryUpdateQuery: CatalogCategoryUpdateQuery)
Update Catalog Category Relationships Items
CatalogsApi.updateCatalogCategoryRelationshipsItems(id: string, catalogCategoryItemOp: CatalogCategoryItemOp)
CatalogsApi.updateCatalogItem(id: string, catalogItemUpdateQuery: CatalogItemUpdateQuery)
Update Catalog Item Relationships Categories
CatalogsApi.updateCatalogItemRelationshipsCategories(id: string, catalogItemCategoryOp: CatalogItemCategoryOp)
CatalogsApi.updateCatalogVariant(id: string, catalogVariantUpdateQuery: CatalogVariantUpdateQuery)
CouponsApi.createCoupon(couponCreateQuery: CouponCreateQuery)
CouponsApi.createCouponCode(couponCodeCreateQuery: CouponCodeCreateQuery)
CouponsApi.deleteCoupon(id: string)
CouponsApi.deleteCouponCode(id: string)
CouponsApi.getCoupon(id: string, options)
CouponsApi.getCouponCode(id: string, options)
Get Coupon Code Bulk Create Job
CouponsApi.getCouponCodeBulkCreateJob(jobId: string, options)
Get Coupon Code Bulk Create Jobs
CouponsApi.getCouponCodeBulkCreateJobs(options)
Get Coupon Code Relationships Coupon
CouponsApi.getCouponCodeRelationshipsCoupon(id: string, options)
CouponsApi.getCouponCodes(options)
CouponsApi.getCouponCodesForCoupon(id: string, options)
CouponsApi.getCouponForCouponCode(id: string, options)
Get Coupon Relationships Coupon Codes
CouponsApi.getCouponRelationshipsCouponCodes(id: string)
CouponsApi.getCoupons(options)
Spawn Coupon Code Bulk Create Job
CouponsApi.spawnCouponCodeBulkCreateJob(couponCodeCreateJobCreateQuery: CouponCodeCreateJobCreateQuery)
CouponsApi.updateCoupon(id: string, couponUpdateQuery: CouponUpdateQuery)
CouponsApi.updateCouponCode(id: string, couponCodeUpdateQuery: CouponCodeUpdateQuery)
DataPrivacyApi.requestProfileDeletion(dataPrivacyCreateDeletionJobQuery: DataPrivacyCreateDeletionJobQuery)
EventsApi.createEvent(eventCreateQueryV2: EventCreateQueryV2)
EventsApi.getEvent(id: string, options)
EventsApi.getEventMetric(id: string, options)
EventsApi.getEventProfile(id: string, options)
Get Event Relationships Metric
EventsApi.getEventRelationshipsMetric(id: string)
Get Event Relationships Profile
EventsApi.getEventRelationshipsProfile(id: string)
EventsApi.getEvents(options)
FlowsApi.getFlow(id: string, options)
FlowsApi.getFlowAction(id: string, options)
FlowsApi.getFlowActionFlow(id: string, options)
FlowsApi.getFlowActionMessages(id: string, options)
Get Flow Action Relationships Flow
FlowsApi.getFlowActionRelationshipsFlow(id: string)
Get Flow Action Relationships Messages
FlowsApi.getFlowActionRelationshipsMessages(id: string, options)
FlowsApi.getFlowFlowActions(id: string, options)
FlowsApi.getFlowMessage(id: string, options)
FlowsApi.getFlowMessageAction(id: string, options)
Get Flow Message Relationships Action
FlowsApi.getFlowMessageRelationshipsAction(id: string)
Get Flow Message Relationships Template
FlowsApi.getFlowMessageRelationshipsTemplate(id: string)
FlowsApi.getFlowMessageTemplate(id: string, options)
Get Flow Relationships Flow Actions
FlowsApi.getFlowRelationshipsFlowActions(id: string, options)
FlowsApi.getFlowRelationshipsTags(id: string)
FlowsApi.getFlowTags(id: string, options)
FlowsApi.getFlows(options)
FlowsApi.updateFlow(id: string, flowUpdateQuery: FlowUpdateQuery)
ImagesApi.getImage(id: string, options)
ImagesApi.getImages(options)
ImagesApi.updateImage(id: string, imagePartialUpdateQuery: ImagePartialUpdateQuery)
ImagesApi.uploadImageFromFile(file: RequestFile, )
ImagesApi.uploadImageFromUrl(imageCreateQuery: ImageCreateQuery)
ListsApi.createList(listCreateQuery: ListCreateQuery)
ListsApi.createListRelationships(id: string, listMembersAddQuery: ListMembersAddQuery)
ListsApi.deleteList(id: string)
ListsApi.deleteListRelationships(id: string, listMembersDeleteQuery: ListMembersDeleteQuery)
ListsApi.getList(id: string, options)
ListsApi.getListProfiles(id: string, options)
Get List Relationships Profiles
ListsApi.getListRelationshipsProfiles(id: string, options)
ListsApi.getListRelationshipsTags(id: string)
ListsApi.getListTags(id: string, options)
ListsApi.getLists(options)
ListsApi.updateList(id: string, listPartialUpdateQuery: ListPartialUpdateQuery)
MetricsApi.getMetric(id: string, options)
MetricsApi.getMetrics(options)
MetricsApi.queryMetricAggregates(metricAggregateQuery: MetricAggregateQuery)
ProfilesApi.createOrUpdateProfile(profileUpsertQuery: ProfileUpsertQuery)
ProfilesApi.createProfile(profileCreateQuery: ProfileCreateQuery)
ProfilesApi.createPushToken(pushTokenCreateQuery: PushTokenCreateQuery)
ProfilesApi.getBulkProfileImportJob(jobId: string, options)
Get Bulk Profile Import Job Errors
ProfilesApi.getBulkProfileImportJobImportErrors(id: string, options)
Get Bulk Profile Import Job Lists
ProfilesApi.getBulkProfileImportJobLists(id: string, options)
Get Bulk Profile Import Job Profiles
ProfilesApi.getBulkProfileImportJobProfiles(id: string, options)
Get Bulk Profile Import Job Relationships Lists
ProfilesApi.getBulkProfileImportJobRelationshipsLists(id: string)
Get Bulk Profile Import Job Relationships Profiles
ProfilesApi.getBulkProfileImportJobRelationshipsProfiles(id: string, options)
ProfilesApi.getBulkProfileImportJobs(options)
ProfilesApi.getProfile(id: string, options)
ProfilesApi.getProfileLists(id: string, options)
Get Profile Relationships Lists
ProfilesApi.getProfileRelationshipsLists(id: string)
Get Profile Relationships Segments
ProfilesApi.getProfileRelationshipsSegments(id: string)
ProfilesApi.getProfileSegments(id: string, options)
ProfilesApi.getProfiles(options)
ProfilesApi.mergeProfiles(profileMergeQuery: ProfileMergeQuery)
ProfilesApi.spawnBulkProfileImportJob(profileImportJobCreateQuery: ProfileImportJobCreateQuery)
ProfilesApi.subscribeProfiles(subscriptionCreateJobCreateQuery: SubscriptionCreateJobCreateQuery)
ProfilesApi.suppressProfiles(suppressionCreateJobCreateQuery: SuppressionCreateJobCreateQuery)
ProfilesApi.unsubscribeProfiles(subscriptionDeleteJobCreateQuery: SubscriptionDeleteJobCreateQuery)
ProfilesApi.unsuppressProfiles(suppressionDeleteJobCreateQuery: SuppressionDeleteJobCreateQuery)
ProfilesApi.updateProfile(id: string, profilePartialUpdateQuery: ProfilePartialUpdateQuery)
ReportingApi.queryCampaignValues(campaignValuesRequestDTO: CampaignValuesRequestDTO, options)
ReportingApi.queryFlowSeries(flowSeriesRequestDTO: FlowSeriesRequestDTO, options)
ReportingApi.queryFlowValues(flowValuesRequestDTO: FlowValuesRequestDTO, options)
SegmentsApi.getSegment(id: string, options)
SegmentsApi.getSegmentProfiles(id: string, options)
Get Segment Relationships Profiles
SegmentsApi.getSegmentRelationshipsProfiles(id: string, options)
Get Segment Relationships Tags
SegmentsApi.getSegmentRelationshipsTags(id: string)
SegmentsApi.getSegmentTags(id: string, options)
SegmentsApi.getSegments(options)
SegmentsApi.updateSegment(id: string, segmentPartialUpdateQuery: SegmentPartialUpdateQuery)
TagsApi.createTag(tagCreateQuery: TagCreateQuery)
TagsApi.createTagGroup(tagGroupCreateQuery: TagGroupCreateQuery)
Create Tag Relationships Campaigns
TagsApi.createTagRelationshipsCampaigns(id: string, tagCampaignOp: TagCampaignOp)
Create Tag Relationships Flows
TagsApi.createTagRelationshipsFlows(id: string, tagFlowOp: TagFlowOp)
Create Tag Relationships Lists
TagsApi.createTagRelationshipsLists(id: string, tagListOp: TagListOp)
Create Tag Relationships Segments
TagsApi.createTagRelationshipsSegments(id: string, tagSegmentOp: TagSegmentOp)
TagsApi.deleteTag(id: string)
TagsApi.deleteTagGroup(id: string)
Delete Tag Relationships Campaigns
TagsApi.deleteTagRelationshipsCampaigns(id: string, tagCampaignOp: TagCampaignOp)
Delete Tag Relationships Flows
TagsApi.deleteTagRelationshipsFlows(id: string, tagFlowOp: TagFlowOp)
Delete Tag Relationships Lists
TagsApi.deleteTagRelationshipsLists(id: string, tagListOp: TagListOp)
Delete Tag Relationships Segments
TagsApi.deleteTagRelationshipsSegments(id: string, tagSegmentOp: TagSegmentOp)
TagsApi.getTag(id: string, options)
TagsApi.getTagGroup(id: string, options)
Get Tag Group Relationships Tags
TagsApi.getTagGroupRelationshipsTags(id: string)
TagsApi.getTagGroupTags(id: string, options)
TagsApi.getTagGroups(options)
Get Tag Relationships Campaigns
TagsApi.getTagRelationshipsCampaigns(id: string)
TagsApi.getTagRelationshipsFlows(id: string)
TagsApi.getTagRelationshipsLists(id: string)
Get Tag Relationships Segments
TagsApi.getTagRelationshipsSegments(id: string)
Get Tag Relationships Tag Group
TagsApi.getTagRelationshipsTagGroup(id: string)
TagsApi.getTagTagGroup(id: string, options)
TagsApi.getTags(options)
TagsApi.updateTag(id: string, tagUpdateQuery: TagUpdateQuery)
TagsApi.updateTagGroup(id: string, tagGroupUpdateQuery: TagGroupUpdateQuery)
TemplatesApi.createTemplate(templateCreateQuery: TemplateCreateQuery)
TemplatesApi.createTemplateClone(templateCloneQuery: TemplateCloneQuery)
TemplatesApi.createTemplateRender(templateRenderQuery: TemplateRenderQuery)
TemplatesApi.deleteTemplate(id: string)
TemplatesApi.getTemplate(id: string, options)
TemplatesApi.getTemplates(options)
TemplatesApi.updateTemplate(id: string, templateUpdateQuery: TemplateUpdateQuery)
try {
await YOUR_CALL_HERE
} catch (e) {
console.log(e)
}
In the interest of making the SDK follow conventions, we made the following namespace changes relative to the language agnostic resources up top.
- dashes
-
are removed in favor of camelCase - all other non-alphanumeric symbols, including spaces, are removed.
For example:
get-campaigns
becomesgetCampaigns
Data Privacy
becomeDataPrivacy
The parameters follow the same naming conventions as the resource groups and operations.
We stick to the following convention for parameters/arguments
- All query and path params that are tagged as
required
in the docs are passed as positional args. - There is no need to pass in your private
apiKey
for any operations, as it is defined upon api instantiation; public key is still required where its used.