Comments
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.
Unique identifier (UUID) of the schema containing the record
550e8400-e29b-41d4-a716-446655440000Unique identifier (UUID) of the record to get comments for
a1b2c3d4-e5f6-7890-abcd-ef1234567890Comments retrieved successfully
Invalid ID format - Either schemaId or recordId is not a valid UUID
Unauthorized - Invalid or missing JWT token
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: trueto support commentsBoth 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).
Comment created successfully
Invalid input - Missing required fields (schemaId, recordId, or content)
Unauthorized - Invalid or missing JWT token
Last updated
Was this helpful?