Get All Notes
Purpose
To get a list of notes added in your account using Widget API.
Request Format
ZOHO.RECRUIT.API.getAllNotes()
Parameters
Parameter Name | Data Type | Description |
---|---|---|
page (optional) | Integer | To get the list of records from the respective pages. The default value is 1. |
per_page (optional) | Integer | To get the list of records available per page. The default value is 200. |
Sample Request
CopiedZOHO.RECRUIT.API.getAllNotes().then(function(successResponse) {
}, function(failureResponse) {
});
Sample Response
Copied{
"data": [
{
"Modified_Time": "2020-08-24T06:56:50+05:30",
"$attachments": null,
"Created_Time": "2020-08-24T06:56:50+05:30",
"Parent_Id": {
"name": null,
"id": "486812000001660091"
},
"$editable": true,
"$se_module": "Candidates",
"Note_Owner": {
"name": "Thomas Shelby",
"id": "486812000000216003"
},
"Modified_By": {
"name": "Thomas Shelby",
"id": "486812000000216003"
},
"$size": null,
"$voice_note": false,
"id": "486812000001659087",
"Created_By": {
"name": "Thomas Shelby",
"id": "486812000000216003"
},
"Note_Title": "Notes",
"Note_Content": "Excellent Performer."
},
{
"Modified_Time": "2019-04-12T11:17:08+05:30",
"$attachments": null,
"Created_Time": "2019-04-12T11:17:08+05:30",
"Parent_Id": {
"name": null,
"id": "486812000000645085"
},
"$editable": true,
"$se_module": "zohosign.ZohoSign_Documents",
"Note_Owner": {
"name": "Thomas Shelby",
"id": "486812000000216003"
},
"Modified_By": {
"name": "Thomas Shelby",
"id": "486812000000216003"
},
"$size": null,
"$voice_note": false,
"id": "486812000000648001",
"Created_By": {
"name": "Thomas Shelby",
"id": "486812000000216003"
},
"Note_Title": "Sign Request",
"Note_Content": "download.png has been sent to (yyyyyy@zohoxxxx.com) for signature."
}
],
"info": {
"per_page": 200,
"count": 2,
"page": 1,
"more_records": false
}
}
Show full
Show less