Mark as Delivered
OAuthScope
ZohoCommerce.shipmentorders.CREATE
HTTP Request
POST https://commerce.zoho.com/store/api/v1/salesorders/{order_id}/shipmentorders/delivered
Body JSON Parameters
Parameter | Description |
delivery_date* | string: Date of delivery of the product. |
Request Example
Copiedcurl -i -L -X POST
-H "Content-Type:application/json"
-H "Authorization:Zoho-oauthtoken ***"
-H "X-com-zoho-store-organizationid:58927961"
-d
'{
delivery_date: "2019-09-30"
}'
'https://commerce.zoho.com/store/api/v1/salesorders/51128000000096191/shipmentorders/delivered'
Success Response
Copied{
"code": 0,
"message": "Shipment orders for the SO have been marked as delivered"
}
Failure Response
Copied{
"code": 37135,
"message": "The shipment is already delivered. You cannot change the status of the shipment!"
}