PUT https://app.alaaqat.com/api/contacts/{contact_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 ContactNote
.
{
"data": {
"_id": "6654f77f014742f5f101b822",
"description": "any text",
"contact_id": "663e16252a3faf06c50d0175",
"made_by": 8,
"updated_at": "2024-05-27T21:18:10.206000Z",
"created_at": "2024-05-27T21:13:35.665000Z"
},
"message": "Entity was modified Successfully"
}