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

Data Structure Notes

Create structure note by external data structure id

post

Creates a structure note for the specified external data structure ID.

Body
Responses
201

Structure note created

application/json
post/api/data_structure_notes

Get note suggestions

get

Returns AI-generated note suggestions for the specified data structure.

Path parameters
data_structure_idintegerRequired

Data structure ID

Query parameters
languagestringOptional

Language for suggestions (e.g., 'en', 'es')

Responses
200

Suggestions

application/json
get/api/data_structures/{data_structure_id}/note_suggestions

Search structure notes

post

Searches structure notes using the provided filters and returns matching results.

Body
data_structure_idinteger · nullableOptional

Filter by data structure ID

querystring · nullableOptional

Search query text

sizeinteger · min: 1 · max: 100 · nullableOptional

Number of results per page

statusstring · enum · nullableOptional

Filter by status

Possible values:
system_idinteger · nullableOptional

Filter by system ID

untilstring · nullableOptional

Filter by update timestamp (upper bound)

updated_atstring · nullableOptional

Filter by update timestamp

Responses
200

Structure note search response

application/json
post/api/data_structure_notes/search

List structure notes

get

Lists all structure notes for the specified data structure and includes available actions for the current user.

Path parameters
data_structure_idintegerRequired

Data structure ID

Responses
200

Structure notes

application/json
get/api/data_structures/{data_structure_id}/notes

Create structure note

post

Creates a new structure note for the specified data structure.

Path parameters
data_structure_idintegerRequired

Data structure ID

Body
Responses
201

Structure note

application/json
post/api/data_structures/{data_structure_id}/notes

Show structure note

get

Retrieves the specified structure note and returns its details.

Path parameters
data_structure_idintegerRequired

Data structure ID

idintegerRequired

Structure note ID

Responses
200

Structure note

application/json
get/api/data_structures/{data_structure_id}/notes/{id}

Update structure note

put

Updates the specified structure note with the provided payload.

Path parameters
data_structure_idintegerRequired

Data structure ID

idintegerRequired

Structure note ID

Body
Responses
200

Structure note updated

application/json
put/api/data_structures/{data_structure_id}/notes/{id}

Delete structure note

delete

Deletes the specified structure note.

Path parameters
data_structure_idintegerRequired

Data structure ID

idintegerRequired

Structure note ID

Responses
204

Structure note deleted

No content

delete/api/data_structures/{data_structure_id}/notes/{id}

No content

Update structure note

patch

Updates the specified structure note with the provided payload.

Path parameters
data_structure_idintegerRequired

Data structure ID

idintegerRequired

Structure note ID

Body
Responses
200

Structure note updated

application/json
patch/api/data_structures/{data_structure_id}/notes/{id}

Last updated