https://api.thygon.com
Create entities
Create entity
POST /entities
Create a new entity with a specific type and properties. You can also specify optional mappings to external SaaS providers.
Request body:
List & query entities
List entities
GET /entities
Retrieve a list of active entities.
Query parameters:
type(string, optional): Filter by exact entity type (e.g.Task).limit(integer, optional): Maximum number of entities to return. Default is50.skip(integer, optional): Number of entities to skip. Default is0.
Get single entity
GET /entities/{id}
Retrieve the full properties and external references of a specific entity.
Response (200 OK):
Update & delete entities
Update entity properties
PUT /entities/{id}
Update the custom properties or change external system mappings for an entity. This operation merges or replaces active configurations.
Request body:
Delete entity
DELETE /entities/{id}
Permanently delete an entity from the shared state layer.