Zoho Recruit
notes.create
Creates one or more note records.
Remote zoho/recruit
Remote (network-hosted)
Other tools also called notes.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Parent_Id": {
"type": "object",
"required": [
"module",
"id"
],
"properties": {
"id": {
"type": "string",
"format": "int64",
"description": "Unique identifier of the parent record"
},
"module": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "int64",
"description": "Module ID"
},
"api_name": {
"type": "string",
"maxLength": 50,
"description": "API name of the parent module"
}
},
"description": "Module information of the parent record",
"additionalProperties": false
}
},
"description": "Parent record information",
"additionalProperties": false
},
"Note_Title": {
"type": [
"string",
"null"
],
"maxLength": 120,
"description": "The title of the note"
},
"Note_Content": {
"type": [
"string",
"null"
],
"maxLength": 65535,
"description": "The content/body of the note"
}
},
"description": "Note object with title, content, and parent information",
"additionalProperties": true
},
"maxItems": 100,
"description": "Array of note objects to create"
}
}
}