Add Private Note
Last updated
// Sample Request Body
{
"dropIds": ["65b8c2c734d8cd1be099fd45"],
"note": "This is a sample note"
}//Sample Response Body - 200 OK
{
"status": true,
"message": "Note added successfully",
"data": {}
}//Sample Request Body
{
"dropIds": ["invalidDropId"],
"note": "This is a sample note"
}//Sample Response Body - 400 Bad Request
{
"status": false,
"message": "Invalid drop Id"
}