Update Deal Note

PUT https://app.alaaqat.com/api/deals/{deal_id}/notes/{_id} _id is the ID for Note

Requirements

field required type
description yes string

Header

Accept: application/json

Body

{
  "description": "any text"
}

Response

The response is always in the format of DealNote.

{
    "data": {
        "_id": "66553c7ce6f07c77bc014ce6",
        "description": "some text",
        "deal_id": "66552c5bf8309b0cae098994",
        "made_by": 8,
        "updated_at": "2024-05-28T02:11:29.098000Z",
        "created_at": "2024-05-28T02:07:56.843000Z"
    },
    "message": "Entity was modified Successfully"
}