Update Note

Purpose

To update a specific note using Widget APIs.

Request Format

ZOHO.RECRUIT.API.createNotes({
    "RecordID": "{record_id}",
    "APIData": [{record_data}]

Sample Request

CopiedZOHO.RECRUIT.API.createNotes({
    "RecordID": "412963000001376069",
    "APIData": [{
        "Note_Title": "Title",
        "Note_Content": "Content",
        "Parent_Id"
    }]
}).then(function(successResponse) {
   
}, function(errorResponse) {
    
});

Sample Response

Copied{
    "data": [
       {
            "code": "SUCCESS",
            "details": {
                "created_time": "2016-07-05T17:13:24+05:30",
                "modified_time": "2016-08-08T11:28:41+05:30",
                "modified_by": {
                    "name": "Patricia Boyle",
                    "id": "4108880000086001"
                },
                "id": "410888000000643123",
                "created_by": {
                    "name": "Patricia Boyle",
                    "id": "4108880000086001"
                }
            },
            "message": "record updated",
            "status": "success"
        }
    ]
}