This SDK is set to be deprecated + retired on 2024-06-30.
We have a NEW PHP SDK to go along with our new API.
We recommend migrating over to our newest SDK.
You can read more about our SDK release history and support here
For a comparison between our old and new APIs, check out this guide.
- SDK version: 1.0.3.20220329
This SDK is a thin wrapper around our API. See our API Reference for full documentation on API behavior.
This SDK mirrors the organization and naming convention of the above language-agnostic resources, with a few namespace changes to conform to PHP idioms (details in Appendix).
This SDK is organized into the following resources:
-
Campaigns
-
DataPrivacy
-
ListsSegments
-
Metrics
-
Profiles
-
Templates
-
TrackIdentify
You can install this package using either Packagist, or the source code.
You can install this library using Packagist.
If you have composer installed, you can run: composer require klaviyo/sdk
You can also install this library directly from source code, without using the Packagist package, as follows:
- cloning this repo
- running
composer update
(within the repo)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
use Klaviyo\Client;
$client = new Client(
'YOUR_API_KEY',
$num_retries = 3,
$wait_seconds = 3);
$response = $client->Metrics->getMetrics();
- The SDK retries on resolvable errors, namely: rate limits (common) and server errors on Klaviyo's end (rare).
- The keyword arguments in the example above define retry behavior
wait_seconds
denotes how long to wait per retry, in seconds- If you wish to disable retries, set
$num_retries = 0
- the example is populated with the default values
- non-resolvable errors and resolvable errors which have timed out throw an
ApiException
, detailed below.
This SDK throws an ApiException
error when the server returns a non resolvable response, or a resolvable non-2XX
response times out.
If you'd like to extend error handling beyond what the SDK supports natively, you can use the following methods to retrieve the corresponding attributes from the ApiException
object:
getCode() : int
getMessage() : str
getReponseBody() : bytes
getResponseHeaders() : string[]
For example:
try {
$client.Metrics.getMetrics();
} catch (Exception $e) {
if ($e->getCode() == SOME_INTEGER) {
doSomething();
}
}
NOTE:
- Organization: Resource groups and functions are listed in alphabetical order, first by Resource name, then by OpenAPI Summary. Operation summaries are those listed in the right side bar of the API Reference. These summaries link directly to the corresponding section of the API reference.
- For example values / data types, as well as whether parameters are required/optional, please reference the corresponding API Reference link.
- Some keyword args are required for the API call to succeed, the API docs above are the source of truth regarding which keyword args are required.
- Keyword args are not included in the sample SDK calls; instead, where applicable, they are included as comments above each SDK call.
- JSON payloads should be passed in as associative arrays
- A strange quirk of PHP is that default/optional arguments must be passed in in order, and MUST be included and set as
null
, at least up to the last default value you wish to use.- For example, if a given function has the following optional parameters
someFunction($a=1, $b=2, $c=3)
, and you wish to only set$b
, you MUST pass insomeFunction($a=null, $b=$YOUR_VALUE)
- Otherwise, if you pass in something such as
someFunction($b=$YOUR_VALUE)
, PHP will actually assign the$YOUR_VALUE
to parameter$a
, which is wrong.
- For example, if a given function has the following optional parameters
## Positional Arguments
# $campaign_id | string
client->Campaigns->cancelCampaign($campaign_id);
## Positional Arguments
# $campaign_id | string
# $name | string
# $list_id | string
client->Campaigns->cloneCampaign($campaign_id, $name, $list_id);
## Positional Arguments
# $list_id | string
# $template_id | string
# $from_email | string
# $from_name | string
# $subject | string
## Keyword Arguments
# $name | string
# $use_smart_sending | bool
# $add_google_analytics | bool
client->Campaigns->createCampaign($list_id, $template_id, $from_email, $from_name, $subject);
## Positional Arguments
# $campaign_id | string
client->Campaigns->getCampaignInfo($campaign_id);
## Positional Arguments
# $campaign_id | string
## Keyword Arguments
# $count | int
# $sort | string
# $offset | string
client->Campaigns->getCampaignRecipients($campaign_id);
## Keyword Arguments
# $page | int
# $count | int
client->Campaigns->getCampaigns();
## Positional Arguments
# $campaign_id | string
# $send_time | string
client->Campaigns->scheduleCampaign($campaign_id, $send_time);
## Positional Arguments
# $campaign_id | string
client->Campaigns->sendCampaign($campaign_id);
## Positional Arguments
# $campaign_id | string
## Keyword Arguments
# $list_id | string
# $template_id | string
# $from_email | string
# $from_name | string
# $subject | string
# $name | string
# $use_smart_sending | bool
# $add_google_analytics | bool
client->Campaigns->updateCampaign($campaign_id);
## Keyword Arguments
# $body | array
client->DataPrivacy->requestDeletion();
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->addMembers($list_id);
## Positional Arguments
# $list_name | string
client->ListsSegments->createList($list_name);
## Positional Arguments
# $list_id | string
client->ListsSegments->deleteList($list_id);
## Positional Arguments
# $email | string
client->ListsSegments->excludeGlobally($email);
## Keyword Arguments
# $reason | string
# $sort | string
# $count | int
# $page | int
client->ListsSegments->getGlobalExclusions();
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $marker | int
client->ListsSegments->getListExclusions($list_id);
## Positional Arguments
# $list_id | string
client->ListsSegments->getListInfo($list_id);
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->getListMembers($list_id);
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->getListSubscriptions($list_id);
client->ListsSegments->getLists();
## Positional Arguments
# $list_or_segment_id | string
## Keyword Arguments
# $marker | int
client->ListsSegments->getMembers($list_or_segment_id);
## Positional Arguments
# $segment_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->getSegmentMembers($segment_id);
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->removeMembers($list_id);
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->subscribe($list_id);
## Positional Arguments
# $list_id | string
## Keyword Arguments
# $body | array
client->ListsSegments->unsubscribe($list_id);
## Positional Arguments
# $list_id | string
# $list_name | string
client->ListsSegments->updateListName($list_id, $list_name);
## Keyword Arguments
# $page | int
# $count | int
client->Metrics->getMetrics();
## Positional Arguments
# $metric_id | string
## Keyword Arguments
# $start_date | string
# $end_date | string
# $unit | string
# $measurement | string
# $where | string
# $by | string
# $count | int
client->Metrics->metricExport($metric_id);
## Positional Arguments
# $metric_id | string
## Keyword Arguments
# $since | string
# $count | int
# $sort | string
client->Metrics->metricTimeline($metric_id);
## Keyword Arguments
# $since | string
# $count | int
# $sort | string
client->Metrics->metricsTimeline();
## Keyword Arguments
# $body | array
client->Profiles->exchange();
## Positional Arguments
# $person_id | string
client->Profiles->getProfile($person_id);
## Keyword Arguments
# $email | string
# $phone_number | string
# $external_id | string
client->Profiles->getProfileId();
## Positional Arguments
# $person_id | string
# $metric_id | string
## Keyword Arguments
# $since | string
# $count | int
# $sort | string
client->Profiles->profileMetricTimeline($person_id, $metric_id);
## Positional Arguments
# $person_id | string
## Keyword Arguments
# $since | string
# $count | int
# $sort | string
client->Profiles->profileMetricsTimeline($person_id);
## Positional Arguments
# $person_id | string
## Keyword Arguments
# $params | array<string,mixed>
client->Profiles->updateProfile($person_id);
## Positional Arguments
# $template_id | string
# $name | string
client->Templates->cloneTemplate($template_id, $name);
## Positional Arguments
# $name | string
# $html | string
client->Templates->createTemplate($name, $html);
## Positional Arguments
# $template_id | string
client->Templates->deleteTemplate($template_id);
## Keyword Arguments
# $page | int
# $count | int
client->Templates->getTemplates();
## Positional Arguments
# $template_id | string
## Keyword Arguments
# $context | string
client->Templates->renderTemplate($template_id);
## Positional Arguments
# $template_id | string
# $from_email | string
# $from_name | string
# $subject | string
# $to | string
## Keyword Arguments
# $context | string
client->Templates->sendTemplate($template_id, $from_email, $from_name, $subject, $to);
## Positional Arguments
# $template_id | string
## Keyword Arguments
# $name | string
# $html | string
client->Templates->updateTemplate($template_id);
## Positional Arguments
# $data | string
client->TrackIdentify->identifyGet($data);
## Positional Arguments
# $data | string
client->TrackIdentify->identifyPost($data);
## Positional Arguments
# $data | string
client->TrackIdentify->trackGet($data);
## Positional Arguments
# $data | string
client->TrackIdentify->trackPost($data);
- The
api_key
is set at the global level: this means that if you manage multiple stores, you will need to run the code for each store in a different environment
In the interest of making the SDK conform to PHP idioms, we made the following namespace changes relative to the language agnostic resources up top (API Docs, Guides, etc).
- non-alphanumeric symbols (spaces, dashes, underscore, ampersand etc) stripped from resource names (tags) and function names (operation IDs)
- Resource names and function names use camelCase
- NOTE: this does not apply to parameter names
For example:
Track & Identify
becomesTrackIdentify
get-campaigns
becomesgetCampaigns
profile_id
remains unchanged
The parameters follow the same naming conventions as the resource groups and operations.
We stick to the following convention for parameters/arguments
- All parameters are passed as function args.
- All optional params, as well as all Body and Form Data params (including required ones), are passed as keyword args.
- 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
api_key
for any operations, as it is defined upon client instantiation; public key is still required where noted for Track/Identify endpoints.