> 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-journal-comments.md).

# Create Journal Comments

Create new comments to journals

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

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

  **clientUUID**

  **userUUID**

  **journalUUID**

## Post new comments to journals

<mark style="color:green;">`POST`</mark> `https://<baseurl>/v1/organization/assets/journal/addcomments/@clientUUID/@userUUID/@journalUUID`

#### Path Parameters

| Name        | Type   | Description  |
| ----------- | ------ | ------------ |
| clientUUID  | string | Client UUID  |
| userUUID    | string | User UUID    |
| journalUUID | string | Journal 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 %}
