CMS > Entries

Update an entry

Change some of an entry's values, leaving the rest untouched.

patch/v1/cms/collections/{collectionId}/entries/{entryId}

Only the values you send change; every omitted field keeps what it had. Send null to clear a field that is not required — clearing a required field returns 400.

The values object must not be empty.

Path parameters

collectionIdstringrequired

ID of the collection.

entryIdstringrequired

ID of the entry.

Request body

valuesobjectrequired

The values to change, keyed by field ID.

Response · 200

entryobjectrequired
Show 6 properties
idstringrequired
collectionIdstringrequired
valuesobjectrequired
statusenumrequired

One of: active, deleted

createdAtstringrequired
updatedAtstringrequired

Errors: 400, 401, 404, 405, 429, 500. See Errors for the response shape.

patchTry it
/v1/cms/collections/{collectionId}/entries/{entryId}

Stored in this browser tab only. Requests go directly to the API — the token never reaches the docs site.

Path parameters

Add a token to send a request.

https://api.superfunnel.ai/v1/cms/collections/{collectionId}/entries/{entryId}

curl -X PATCH 'https://api.superfunnel.ai/v1/cms/collections/{collectionId}/entries/{entryId}' \
  -H 'x-api-key: Bearer YOUR_API_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"values":{"title":"Updated CMS API article","summary":null}}'