Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.mindbridge.ai/llms.txt

Use this file to discover all available pages before exploring further.

Endpoints are structured in a standard way:

Create

POST /{entityName} - Creates an entity with the properties specified in the request body.

Read

GET /{entityName}/{entityId} – Reads the entity identified by the ID.

Update

PUT /{entityName}/{entityId} – Updates the entity identified by the ID with the content of the request body. Every time an entity is saved, the version property is incremented. To prevent multiple calls from overwriting each other’s changes, the version property in the updated request body must match the latest version on MindBridge’s servers.

Delete

DELETE /{entityName}/{entityId} – Deletes the entity identified by the ID.

Query

POST /{entityName}/query – Performs a paged query of the entity collection.