Klaviyo Production Checklist
Overview
Complete checklist for deploying Klaviyo integrations to production, with health
checks, rollback procedures, and validation against real Klaviyo API endpoints.
Work the pre-deployment checklist below, run the pre-flight script, then verify
the live health endpoint before declaring the deploy done.
Prerequisites
- Staging environment tested and verified
- Production API key with correct scopes (
pk_*)
- Webhook signing secret configured
- Monitoring and alerting ready
Instructions
Follow these steps in order. Steps 1–2 are read-only audits of the codebase and
config; steps 3–5 exercise the live API and health surface.
- Audit secrets and code. Confirm the production key lives in a secret
manager and no keys are hardcoded — run
Grep/grep -r "pk_" src/ to catch
leaks, and Read the deployment manifest to verify scopes. See the
Pre-Deployment Checklist below.
- Audit the integration, resilience, and webhooks. Walk the remaining
checklist sections (API integration, error handling, webhook security,
monitoring).
- Run the pre-flight script (
scripts/preflight-klaviyo.sh) to validate the
status page, API auth, rate-limit headroom, and pinned SDK version.
- Deploy, then verify the health endpoint returns
healthy.
- Keep the rollback path ready (feature flag first) in case metrics regress.
Health check, pre-flight script, and rollback code are in
references/implementation.md.
Pre-Deployment Checklist
Authentication & Secrets
API Integration
Error Handling & Resilience
Webhook Security
Monitoring
Output
Working through this skill produces:
- A completed pre-deployment checklist (every box ticked, or a documented
exception).
- A pre-flight run that exits
0 with all four gates green (status page, API
auth 200, rate-limit headroom, pinned SDK version) — see
references/examples.md.
- A live
/health endpoint that returns healthy with sub-500ms latency and
the resolved accountId.
- A rehearsed rollback path (feature flag → git revert →
kubectl rollout undo).
A go-live is "prod ready" only when the checklist is complete, pre-flight is
green, and the health endpoint reports healthy.
Error Handling
Map each failure to the correct severity and response. Full alert-threshold
table:
| Alert |
Condition |
Severity |
| API Auth Failure |
Any 401/403 |
P1 -- key may be revoked |
| API Unreachable |
5xx > 10/min |
P1 -- check status page |
| Rate Limited |
429 > 5/min |
P2 -- reduce request volume |
| High Latency |
P95 > 5s |
P2 -- check network/Klaviyo load |
| Webhook Signature Invalid |
Any rejection |
P2 -- verify signing secret |
- Pre-flight fails auth (
403/401): the key is revoked or under-scoped.
Rotate/repair before deploying — do not proceed (see Example 2 in
references/examples.md).
- Health endpoint
degraded: Klaviyo returned 429. Back off; honor
Retry-After and confirm the request queue caps at 75 req/s.
- Health endpoint
down: Klaviyo unreachable (5xx) — check
status.klaviyo.com and trip the circuit breaker.
- Metrics regress post-deploy: execute the rollback procedure, feature flag
first, from references/implementation.md.
Examples
Read the full endpoint on a live integration to confirm health before sign-off:
curl -s localhost:3000/health | python3 -m json.tool
# → { "status": "healthy", "services": { "klaviyo": { "status": "healthy", "latencyMs": 142, ... } } }
Four worked runs — green pre-flight, a blocked 403, reading the health
endpoint, and an instant feature-flag rollback — are in
references/examples.md.
Resources
Next Steps
For version upgrades, see klaviyo-upgrade-migration.
1---2name: klaviyo-prod-checklist3description: Execute Klaviyo production deployment checklist and validation procedures. Use when deploying Klaviyo integrations to production, preparing for launch, or implementing go-live procedures for email/SMS marketing. Trigger with phrases like "klaviyo production", "deploy klaviyo", "klaviyo go-live", "klaviyo launch checklist", "klaviyo prod ready".4license: MIT5---6# Klaviyo Production Checklist
7
8## Overview
9
10Complete checklist for deploying Klaviyo integrations to production, with health
11checks, rollback procedures, and validation against real Klaviyo API endpoints.
12Work the pre-deployment checklist below, run the pre-flight script, then verify
13the live health endpoint before declaring the deploy done.
14
15## Prerequisites
16
17- Staging environment tested and verified
18- Production API key with correct scopes (`pk_*`)
19- Webhook signing secret configured
20- Monitoring and alerting ready
21
22## Instructions
23
24Follow these steps in order. Steps 1–2 are read-only audits of the codebase and
25config; steps 3–5 exercise the live API and health surface.
26
271. **Audit secrets and code.** Confirm the production key lives in a secret
28 manager and no keys are hardcoded — run `Grep`/`grep -r "pk_" src/` to catch
29 leaks, and `Read` the deployment manifest to verify scopes. See the
30 Pre-Deployment Checklist below.
312. **Audit the integration, resilience, and webhooks.** Walk the remaining
32 checklist sections (API integration, error handling, webhook security,
33 monitoring).
343. **Run the pre-flight script** (`scripts/preflight-klaviyo.sh`) to validate the
35 status page, API auth, rate-limit headroom, and pinned SDK version.
364. **Deploy**, then **verify the health endpoint** returns `healthy`.
375. **Keep the rollback path ready** (feature flag first) in case metrics regress.
38
39Health check, pre-flight script, and rollback code are in
40[references/implementation.md](references/implementation.md).
41
42### Pre-Deployment Checklist
43
44#### Authentication & Secrets
45
46- [ ] Production `KLAVIYO_PRIVATE_KEY` stored in secret manager (not env file)
47- [ ] Key has minimal scopes (only what the app needs)
48- [ ] Webhook signing secret (`KLAVIYO_WEBHOOK_SIGNING_SECRET`) configured
49- [ ] Public key (`KLAVIYO_PUBLIC_KEY`) set for client-side tracking (if used)
50- [ ] No hardcoded keys in codebase (`grep -r "pk_" src/`)
51
52#### API Integration
53
54- [ ] All API calls use `klaviyo-api` SDK (not raw HTTP)
55- [ ] SDK version pinned in `package.json` (not `^` or `*`)
56- [ ] `revision` header set to `2024-10-15` (or current supported revision)
57- [ ] All profile creates use `createOrUpdateProfile` (upsert, not create)
58- [ ] Events include `uniqueId` for deduplication where applicable
59- [ ] Phone numbers validated as E.164 format (`+15551234567`)
60
61#### Error Handling & Resilience
62
63- [ ] 429 retry logic honors `Retry-After` header
64- [ ] 5xx errors retried with exponential backoff
65- [ ] 401/403 errors logged with alert (key rotation needed)
66- [ ] Circuit breaker or graceful degradation when Klaviyo is down
67- [ ] Request queue prevents exceeding 75 req/s burst limit
68
69#### Webhook Security
70
71- [ ] Webhook endpoint uses HTTPS only
72- [ ] HMAC-SHA256 signature verification enabled
73- [ ] Idempotency handling (dedup by event ID)
74- [ ] Webhook endpoint returns 200 within 30 seconds
75
76#### Monitoring
77
78- [ ] Health check endpoint includes Klaviyo connectivity test
79- [ ] Alert on 429 rate (>5/min = P2)
80- [ ] Alert on 401/403 errors (any = P1)
81- [ ] Alert on 5xx errors (>10/min = P1)
82- [ ] API latency tracked (P95 > 5s = P2)
83- [ ] Klaviyo status page monitored ([status.klaviyo.com](https://status.klaviyo.com))
84
85## Output
86
87Working through this skill produces:
88
89- A completed pre-deployment checklist (every box ticked, or a documented
90 exception).
91- A pre-flight run that exits `0` with all four gates green (status page, API
92 auth `200`, rate-limit headroom, pinned SDK version) — see
93 [references/examples.md](references/examples.md).
94- A live `/health` endpoint that returns `healthy` with sub-500ms latency and
95 the resolved `accountId`.
96- A rehearsed rollback path (feature flag → git revert → `kubectl rollout undo`).
97
98A go-live is "prod ready" only when the checklist is complete, pre-flight is
99green, and the health endpoint reports `healthy`.
100
101## Error Handling
102
103Map each failure to the correct severity and response. Full alert-threshold
104table:
105
106| Alert | Condition | Severity |
107|-------|-----------|----------|
108| API Auth Failure | Any 401/403 | P1 -- key may be revoked |
109| API Unreachable | 5xx > 10/min | P1 -- check status page |
110| Rate Limited | 429 > 5/min | P2 -- reduce request volume |
111| High Latency | P95 > 5s | P2 -- check network/Klaviyo load |
112| Webhook Signature Invalid | Any rejection | P2 -- verify signing secret |
113
114- **Pre-flight fails auth (`403`/`401`):** the key is revoked or under-scoped.
115 Rotate/repair before deploying — do not proceed (see Example 2 in
116 [references/examples.md](references/examples.md)).
117- **Health endpoint `degraded`:** Klaviyo returned `429`. Back off; honor
118 `Retry-After` and confirm the request queue caps at 75 req/s.
119- **Health endpoint `down`:** Klaviyo unreachable (5xx) — check
120 [status.klaviyo.com](https://status.klaviyo.com) and trip the circuit breaker.
121- **Metrics regress post-deploy:** execute the rollback procedure, feature flag
122 first, from [references/implementation.md](references/implementation.md).
123
124## Examples
125
126Read the full endpoint on a live integration to confirm health before sign-off:
127
128```bash
129curl -s localhost:3000/health | python3 -m json.tool
130# → { "status": "healthy", "services": { "klaviyo": { "status": "healthy", "latencyMs": 142, ... } } }
131```
132
133Four worked runs — green pre-flight, a blocked `403`, reading the health
134endpoint, and an instant feature-flag rollback — are in
135[references/examples.md](references/examples.md).
136
137## Resources
138
139- [Klaviyo Status Page](https://status.klaviyo.com)
140- [API Versioning Policy](https://developers.klaviyo.com/en/docs/api_versioning_and_deprecation_policy)
141- [Rate Limits](https://developers.klaviyo.com/en/docs/rate_limits_and_error_handling)
142- [Implementation code](references/implementation.md) — health check, pre-flight script, rollback
143- [Worked examples](references/examples.md) — green/failed pre-flight, health reads, rollback
144
145## Next Steps
146
147For version upgrades, see `klaviyo-upgrade-migration`.