Toolzz AI
- Introduction
- Planos
- ChatService
- Toolzz Analytics
- Introduction
- DatasetItems
- DatasetRunItems
- Datasets
- Health
- Traces
- Session
- Projects
- Prompt
- Metrics
- Media
- Score
- ScoreConfig
- Models
- Observations
- Comments
- Kratos
Get all comments
Endpoint toGet all comments on toolzz analytics
{
"data": [
{
"id": "<string>",
"projectId": "<string>",
"createdAt": {},
"updatedAt": {},
"objectType": "<string>",
"objectId": "<string>",
"content": "<string>",
"authorUserId": "<string>"
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Page number, starts at 1. Nullable if no pagination is required.
Limit of items per page. Reduce size if API issues occur. Nullable if no limit is specified.
Filter comments by object type (e.g., trace, observation, session, prompt). Nullable if no filtering by object type is needed.
Filter comments by object ID. Required if objectType is provided; nullable otherwise.
Filter comments by the author user ID. Nullable if no filtering by author is needed.
Response Description
Below you will see the description of the get a list score response
Array of comment objects.
Unique identifier of the comment.
ID of the associated project.
Timestamp of when the comment was created (ISO 8601 format).
Timestamp of when the comment was last updated (ISO 8601 format).
Type of object the comment is associated with (e.g., TRACE, OBSERVATION).
ID of the object the comment is associated with.
The content of the comment.
ID of the user who authored the comment.
Code Response
Exemples of Response Code
200
Successful Response Code400
Error Response Code
{
"data": [
{
"id": "<string>",
"projectId": "<string>",
"createdAt": {},
"updatedAt": {},
"objectType": "<string>",
"objectId": "<string>",
"content": "<string>",
"authorUserId": "<string>"
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}