Zoho Recruit

notes.updateOne

Updates a specific note by its ID. Either note content or note title must be provided (at least one is mandatory).

Remote zoho/recruit

Remote (network-hosted)

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

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "int64",
      "description": "Unique identifier of the note"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "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 and/or content to update",
        "additionalProperties": true
      },
      "maxItems": 1,
      "description": "Array containing the note to update (single item only)"
    }
  }
}