All URIs are relative to http://localhost:8080/engine-rest
| Method | HTTP request | Description |
|---|---|---|
| create_comment | post /task/{id}/comment/create | |
| get_comment | get /task/{id}/comment/{commentId} | |
| get_comments | get /task/{id}/comment |
crate::models::CommentDto create_comment(id, comment_dto)
Creates a comment for a task by id.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| id | String | The id of the task to add the comment to. | [required] | |
| comment_dto | Option<CommentDto> | Note: Only the message property will be used. Every other property passed to this endpoint will be ignored. |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::CommentDto get_comment(id, comment_id)
Retrieves a task comment by task id and comment id.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| id | String | The id of the task. | [required] | |
| comment_id | String | The id of the comment to be retrieved. | [required] |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Veccrate::models::CommentDto get_comments(id)
Gets the comments for a task by id.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| id | String | The id of the task to retrieve the comments for. | [required] |
Veccrate::models::CommentDto
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]