PUT https://app.alaaqat.com/api/tickets/{ticket_id}/notes/{_id}
_id is the ID for Note
field | required | type |
---|---|---|
description | yes | string |
Accept: application/json
{
"description": "any text"
}
The response is always in the format of TicketNote
.
{
"data": {
"_id": "66987d5a5b6b9ecd2e0aa1f9",
"description": "any text",
"ticket_id": "669867025b6b9ecd2e0aa1e6",
"made_by": 1,
"updated_at": "2024-05-28T02:11:29.098000Z",
"created_at": "2024-05-28T02:07:56.843000Z"
},
"message": "Entity was modified Successfully"
}