Store Update

Update an entity (partial updates).

Example: POST /pulse/store/update { “id”: “todo_abc123”, “updates”: { “completed”: true, “completed_at”: “2024-01-01T12:00:00Z” } }

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
idstringRequired
Entity ID
updatesmap from strings to anyRequired
Partial updates to apply

Response

Successful Response
okboolean or nullDefaults to true
entityobject or null
Single entity response
entitieslist of objects or null
messagestring or null

Errors