Create New Ticket Note

POST https://app.alaaqat.com/api/tickets/{_id}/notes

Requirements

field required type
description yes string

Header

Accept: application/json

Body

{
  "description": "test text"
}

Response

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"
}