POST https://app.alaaqat.com/api/tickets/{_id}/notes
field | required | type |
---|---|---|
description | yes | string |
Accept: application/json
{
"description": "test text"
}
The response is always in the format of TicketNote
.
{
"data": {
"_id": "66987c2e5b6b9ecd2e0aa1f8",
"description": "test text",
"ticket_id": "669867025b6b9ecd2e0aa1e6",
"made_by": 1,
"updated_at": "2024-07-18T02:21:34.438000Z",
"created_at": "2024-07-18T02:21:34.438000Z",
}
},
"message": "Entity was created Successfully"
}