Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.alterauth.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Use Klaviyo credentials to make authenticated API calls through Alter Vault without exposing your API keys in code.
PropertyValue
Provider IDklaviyo
CategoryMarketing
Credential TypeAPI Key

Step 1: Get Your Credentials

1

Log in to Klaviyo

Log in to Klaviyo at www.klaviyo.com.
2

Go to Settings → Account → API Keys

Go to Settings → Account → API Keys at www.klaviyo.com/settings/account/api-keys.
3

Create a Private API Key

Click ‘Create Private API Key’.
4

Copy your API key

Copy the generated private API key.
Never share your credentials publicly. Store them securely and only enter them in the Alter Vault Developer Portal.

Step 2: Add to Alter Vault

1

Open the Developer Portal

Go to portal.alterauth.com and navigate to your app.
2

Add Klaviyo

Go to Managed Secrets > Add Provider > Klaviyo.
3

Enter your credentials

Paste your API Key into the credential field.
4

Save

Click Save. You’ll receive a grant_id to use with the SDK.

Using in Code

response = await vault.request(
    HttpMethod.GET,
    "https://a.klaviyo.com/api/lists",
    grant_id="YOUR_GRANT_ID",
)