get https://a.klaviyo.com/api/forms//form-versions
Get the form versions for the given form.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
forms:read
Responses
Get the form versions for the given form.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
forms:read
xxxxxxxxxx
curl --request GET \
--url 'https://a.klaviyo.com/api/forms/id/form-versions?page[size]=20' \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
27{
"data": [
{
"type": "form-version",
"id": "1234567",
"attributes": {
"form_type": "banner",
"ab_test": {
"variation_name": "string"
},
"status": "draft",
"created_at": "2024-03-04T00:00:00Z",
"updated_at": "2024-03-04T00:00:00Z"
},
"links": {
"self": "string"
}
}
],
"links": {
"self": "string",
"first": "string",
"last": "string",
"prev": "string",
"next": "string"
}
}