# Create multiple comments **POST /actions/projects/{project_id}/tasks/comment-many** Create several comments at once for a specific project. Each comment requires a text, a task id, a task_status and a person as arguments. This way, comments keep history of status changes. When the comment is created, it updates the task status with the given task status. ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Jwt authorization ## Parameters ### Path parameters - **project_id** () Unique identifier of the project ### Body: application/json (array[object]) - **task_status_id** (string(uuid)) Task status identifier - **comment** (string) Comment text content - **person_id** (string(uuid)) Person identifier (optional, defaults to current user) - **object_id** (string(uuid)) Task identifier - **created_at** (string(date-time)) Creation timestamp (optional, defaults to current time) - **checklist** (object) Checklist items for the comment - **links** (array[string]) List of related links ## Responses ### 201 Comments successfully created #### Body: application/json (array[object]) - **id** (string(uuid)) Comment unique identifier - **task_id** (string(uuid)) Task identifier - **person_id** (string(uuid)) Person identifier - **comment** (string) Comment text content - **task_status_id** (string(uuid)) Task status identifier - **created_at** (string(date-time)) Creation timestamp [Powered by Bump.sh](https://bump.sh)