Add Comments
HTTP Request
POST https://commerce.zoho.com/store/api/v1/salesorders/{salesorder_id}/comments
OAuthScope
ZohoCommerce.salesorders.CREATE
Body Parameters
Parameter | Description |
description* | string: The comment to be added. |
show_comment_to_client | boolean: Boolean to determine whether the comment needs to be shown to client. |
mail_to_customer | boolean: Boolean to determine whether it has to be mailed to the customer. |
transaction_type* | string: Allowed values: salesorder, customer_payment, shipment_order, contact, none. |
Request Example
Copiedcurl -i -L -X POST
-H "Authorization:Zoho-oauthtoken ***"
-H "X-com-zoho-store-organizationid:58927961"
-H "Content-Type:application/json"
-d '{
"description":"Hello World",
"show_comment_to_client":"true",
"mail_to_customer":"false",
"transaction_type" : "salesorder"
}'
'https://commerce.zoho.com/store/api/v1/salesorders/51128000000096032/comments'
Response Example
Copied{
"code": 0,
"message": "Comments added.",
"comment": {
"salesorder_id": "51128000000096032",
"comment_id": "45614000000476020",
"description": "Hello World",
"commented_by_id": "45614000000095009",
"commented_by": "...",
"comment_type": "internal",
"date": "2020-02-20",
"date_formatted": "20/02/2020 09:56 PM",
"date_description": "few seconds ago",
"time": "9:56 PM",
"operation_type": "",
"transaction_id": "",
"transaction_type": "none"
}
}
Show full
Show less