Creates a new note for a specific lead.
Request
 Send your HTTP requests with an Authorization
 header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
 Body Params  application/json
{
    "description":"lead notes"
}
Responses
application/json {
    "data": {
        "id": "1",
        "rel_id": "1",
        "rel_type": "lead",
        "description": "lead notes",
        "date_contacted": null,
        "addedfrom": "1",
        "dateadded": "2024-08-05 00:00:00",
        "staff": "john doe"
    },
    "message": "success"
}
Modified at 2024-09-05 09:37:34