For the complete documentation index, see llms.txt. This page is also available as Markdown.

Units

Get unit

get

Retrieves a specific unit by name.

Path parameters
namestringRequired

Unit name

Responses
200

Unit retrieved

application/json
get/api/units/{name}

Update unit

put

Updates a unit with nodes and relationships data from uploaded files.

Path parameters
namestringRequired

Unit name

Body
nodesstring · binaryRequired

File upload for nodes data

relsstring · binaryRequired

File upload for relationships data

Responses
202

Unit update accepted

No content

put/api/units/{name}

No content

Delete unit

delete

Deletes a unit asynchronously.

Path parameters
namestringRequired

Unit name

Responses
202

Unit deletion accepted

No content

delete/api/units/{name}

No content

Update unit

patch

Updates a unit with nodes and relationships data from uploaded files.

Path parameters
namestringRequired

Unit name

Body
nodesstring · binaryRequired

File upload for nodes data

relsstring · binaryRequired

File upload for relationships data

Responses
202

Unit update accepted

No content

patch/api/units/{name}

No content

List units

get

Retrieves all active units

Responses
200

Units retrieved

application/json
get/api/units

Create unit

post

Creates a new unit.

Body
namestringRequired

Unit name

statusboolean · nullableOptional

Unit status

Responses
200

Unit created

application/json
post/api/units

List unit events

get

Retrieves all events for a specific unit

Path parameters
unit_namestringRequired

Unit name

Responses
200

Unit events retrieved

application/json
get/api/units/{unit_name}/events

Last updated