Comments

List comments for a record

get

Retrieves all comments associated with a specific record in a schema. Comments provide a way to add collaborative notes and discussions to individual records. Only schemas with the 'commentable' property set to true support comments.

Path parameters
schemaIdstring · uuidRequired

Unique identifier (UUID) of the schema containing the record

Example: 550e8400-e29b-41d4-a716-446655440000
recordIdstring · uuidRequired

Unique identifier (UUID) of the record to get comments for

Example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
Responses
200

Comments retrieved successfully

application/json
get
/api/comment/{schemaId}/{recordId}

Create a comment on a record

post

Creates a new comment associated with a specific record in a schema. Comments allow users to add notes, feedback, or discussions to individual data records.

Requirements:

  • The schema must have commentable: true to support comments

  • Both schemaId and recordId must be valid UUIDs

  • Content cannot be empty

The comment will be timestamped and attributed to the API (for programmatic access) or the authenticated user (for UI access).

Body
idstring · uuidOptional
schemaIdstring · uuidOptional
recordIdstring · uuidOptional
Responses
200

Comment created successfully

application/json
post
/api/comment/create

Last updated

Was this helpful?