Update a list
$ lightfield list update
POST/v1/lists/{id}
Updates an existing list by ID. Only included fields are modified.
Supports idempotency via the Idempotency-Key header.
Required scope: lists:update
Rate limit category: Write
Update a list
lightfield list update \
--api-key 'My API Key' \
--id id{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink"
}Returns Examples
{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink"
}