get https://a.klaviyo.com/api/v1/campaign//recipients
Returns summary information about email recipients for the campaign specified that includes each recipients email, customer ID, and status.
Response
Returns summary information about email recipients for the campaign specified that includes each recipients email, customer ID, and status.
xxxxxxxxxx
curl --request GET \
--url 'https://a.klaviyo.com/api/v1/campaign/CAMPAIGN_ID/recipients?count=5000&sort=asc&api_key=PRIVATE_API_KEY' \
--header 'accept: application/json'
xxxxxxxxxx
12{
"count": 1,
"data": [
{
"email": "abraham.lincoln@klaviyo.com",
"status": "Sent",
"customer_id": "PROFILE_ID",
"variation_id": null
}
],
"next_offset": "NEXT_OFFSET"
}