> For the complete documentation index, see [llms.txt](https://tag-api.agreefy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tag-api.agreefy.com/create-task-comments.md).

# Create task comments

Create user task comments

| Parameters              | Type       | Description       |
| ----------------------- | ---------- | ----------------- |
| **comments(Mandatory)** | String(36) | **Task comments** |

* URL Parameter&#x73;**:**

  **clientUUID**

  **userUUID**

  **taskUUID**

## Post user task comments

<mark style="color:green;">`POST`</mark> `https://<baseurl>/v1/organization/tasks/comments/add/@clientUUID/@userUUID/@taskUUID`

#### Path Parameters

| Name     | Type   | Description |
| -------- | ------ | ----------- |
| userUUID | string | User UUID   |
| taskUUID | string | Task UUID   |

#### Headers

| Name           | Type   | Description          |
| -------------- | ------ | -------------------- |
| Authentication | string | Authentication token |

{% tabs %}
{% tab title="200 " %}

```
#########################################################################
## success
#########################################################################

{
    "message": "success",
    "status": 200
}


#########################################################################
## Error:Unable to save data
#########################################################################
            
{
	"message": "error",
	"status": 400,
	"description": "Unable to save data"
}

#########################################################################
## Error:No data found
#########################################################################
            
{
	"message": "error",
	"status": 401,
	"description": "No data found"
}



```

{% endtab %}
{% endtabs %}
