Zoho Recruit

notes.update

Updates one or more existing note records. Either note content or note title must be provided (at least one is mandatory) for each note.

Remote zoho/recruit

Remote (network-hosted)

Other tools also called notes.update? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string",
            "format": "int64",
            "description": "Unique identifier of the note to update"
          },
          "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 id, title and/or content to update",
        "additionalProperties": true
      },
      "maxItems": 100,
      "description": "Array of note objects to update"
    }
  }
}