Zoho Recruit

records.upsert

The Upsert API allows you to insert a new record or update an existing one based on duplicate check field values.

Remote zoho/recruit

Remote (network-hosted)

Other tools also called records.upsert? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Unique identifier of the record. If null or omitted, a new record may be created."
          }
        },
        "description": "Single record payload containing field-value pairs for upsert.",
        "additionalProperties": true
      },
      "maxItems": 100,
      "description": "List of records to be created or updated using the upsert operation."
    },
    "lar_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "Layout assignment rule identifier used to determine record layout during upsert."
    },
    "module": {
      "type": "string",
      "maxLength": 100,
      "description": "Specifies the module name"
    },
    "trigger": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 50,
        "description": "Name of the trigger to be executed."
      },
      "maxItems": 10,
      "description": "List of automation triggers to be executed during the upsert operation."
    },
    "wf_trigger": {
      "type": [
        "string",
        "null"
      ],
      "description": "Workflow trigger identifier to be executed as part of the upsert operation."
    },
    "duplicate_check_fields": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 100,
        "description": "API name of the field used for duplicate record verification."
      },
      "maxItems": 10,
      "description": "Defines the ordered list of fields used to detect duplicate records during upsert."
    }
  }
}