Skip to content
HOC Site Docs
English
Esc
navigateopen⌘Jpreview

Entries

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

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/{locale}/{websiteId}/objects/{objectTypeId}

Create an entry.

POST /api/v1/{locale}/{websiteId}/objects/{objectTypeId}
{
  "fieldValues": {},
  "localizedValuesByLocale": {}
}

Read, update, or delete one entry.

GET|PATCH|DELETE /api/v1/{locale}/{websiteId}/objects/{objectTypeId}/{entryId}
{
  "fieldValues": {},
  "localizedValuesByLocale": {},
  "status": "draft | published"
}

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

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

Was this page helpful?