Store Create

Create a new entity.

Example: POST /pulse/store/create { “type”: “todo”, “data”: { “title”: “Buy milk”, “completed”: false } }

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
typestringRequired

Entity type (e.g., ‘todo’, ‘note’, ‘task’)

datamap from strings to anyRequired
Entity data
tagslist of strings or nullOptional
Optional tags

Response

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

Errors