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. Optional query: page, search, 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.