Entries are records of an object type. Values live in fieldValues; localized fields use localizedValuesByLocale. Status is draft or published when publishing is enabled.

Operations

GET

List entries the caller can see (own/others grants plus optional conditions). Optional query: page, search (fuzzy trigram matching across text fields), filterField, filterOperator, filterValue, locale.

GET /api/v1/en/{websiteId}/objects/{objectTypeId}

POST

Create an entry.

POST /api/v1/en/{websiteId}/objects/{objectTypeId}

Use the following request body shape:

{
  "fieldValues": {},
  "localizedValuesByLocale": {}
}

GET | PATCH | DELETE

Read, update, or delete one entry.

GET|PATCH|DELETE /api/v1/en/{websiteId}/objects/{objectTypeId}/{entryId}

Use the following request body shape:

{
  "fieldValues": {},
  "localizedValuesByLocale": {},
  "status": "draft | published"
}

MCP

MCP: list_entries, get_entry, create_entry, update_entry, delete_entry.

Website users

Website users are entries of a user-kind object type. Role assignment is under Access.

Bulk edit in admin

In the admin list you can select entries on the current page and bulk-update a non-unique field (set a number, select, or category; add tags on multiple fields) or bulk-delete. Bulk updates always ask for confirmation. Unique, sensitive, and calculated fields are excluded.