post https://a.klaviyo.com/api/campaign-clone/
Clones an existing campaign, returning a new campaign based on the original with a new ID and name.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
campaigns:write
Responses
Clones an existing campaign, returning a new campaign based on the original with a new ID and name.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
campaigns:write
xxxxxxxxxx
16curl --request POST \
--url https://a.klaviyo.com/api/campaign-clone/ \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'revision: 2023-07-15' \
--data @- <<EOF
{
"data": {
"type": "campaign",
"attributes": {
"new_name": "My cloned campaign's new name"
}
}
}
EOF