Zoho Recruit
notes.list
Retrieves a list of notes.
Remote zoho/recruit
Remote (network-hosted)
Other tools also called notes.list?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ids": {
"type": "string",
"maxLength": 1024,
"description": "To retrieve specific records based on their unique ID."
},
"page": {
"type": "integer",
"format": "int32",
"description": "To get the list of records from the respective pages"
},
"fields": {
"type": "string",
"maxLength": 1024,
"description": "Specify the API names of the fields you want to retrieve when fetching the records."
},
"sort_by": {
"enum": [
"id",
"Created_Time",
"Modified_Time"
],
"type": "string",
"description": "To sort the records based on the fields id, Created_Time, and Modified_Time. The default value is 'id'"
},
"per_page": {
"type": "integer",
"format": "int32",
"description": "Specify how many records to return per page"
},
"page_token": {
"type": "string",
"maxLength": 100,
"description": "To fetch more than 2000 records, you must include the \"page_token\" param in the request"
},
"sort_order": {
"enum": [
"desc",
"asc"
],
"type": "string",
"description": "To sort the available list of records in either ascending or descending order"
}
}
}