patch https://a.klaviyo.com/api/lists//
Update the name of a list with the given list ID.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
List Write
Responses
Update the name of a list with the given list ID.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
List Write
xxxxxxxxxx
17curl --request PATCH \
--url https://a.klaviyo.com/api/lists/Y6nRLr/ \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'revision: 2023-01-24' \
--data '
{
"data": {
"type": "list",
"id": "Y6nRLr",
"attributes": {
"name": "Newsletter"
}
}
}
'
xxxxxxxxxx
14{
"data": {
"type": "list",
"id": "Y6nRLr",
"attributes": {
"name": "Newsletter",
"created": "2022-11-08T00:00:00",
"updated": "2022-11-08T00:00:00"
},
"links": {
"self": "string"
}
}
}