get https://a.klaviyo.com/api/form-versions/
Get the form version with the given ID.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
forms:read
Responses
Get the form version with the given ID.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
forms:read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/form-versions/id \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
18{
"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"
}
}
}