Path parameters
idstringrequired
The ID of the collection entry to update.
Body parameters
*any
The key/value pair of a collection field.
Response
idstring
The unique identifier for this collection entry.
objectstring
This will always contain collection_entry
for this endpoint.
*any
The key/value pair of a collection field.
collectionstring | object
The ID of the collection this post belongs to.
foreign_keysarray
A list of foreign keys for the collection entry.
created_atstring
The date and time when the entry was created.
updated_atstring
The date and time when the entry was updated.
import Blutui from 'blutui'
const blutui = new Blutui('ey....')
blutui.project('one').admin.entries.update('collection-id', '99e2addd-e8d2-45c3-8184-fbcae8a6cf29', {
title: 'Black Chair',
})
Response
{
"id": "0195b59f-2876-726e-9561-e692240c4d2d",
"object": "collection_entry",
"title": "Black Chair",
"collection": "0195b544-bc46-7223-851d-3ce553b11ae6",
"foreign_keys": [],
"created_at": "2025-03-21T11:14:21+13:00",
"updated_at": "2025-03-21T11:14:21+13:00"
}