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
from lightfield import Lightfield
client = Lightfield(
api_key="My API Key",
)
list_update_response = client.list.update(
id="id",
)
print(list_update_response.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"
}