Zoho Recruit
records.clone
To clone a record in a module.
Remote zoho/recruit
Remote (network-hosted)
Other tools also called records.clone?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"maxLength": 1024,
"description": "Unique identifier of the record. Required when modifying an existing record."
},
"$append_values": {
"type": "string",
"maxLength": 1024,
"description": "Controls whether values in a multi-select picklist field should be appended or replaced during an update operation."
}
},
"description": "Payload representing a single record to be created or updated.",
"additionalProperties": true
},
"maxItems": 100,
"description": "Request body containing one or more records to be created or updated."
},
"module": {
"type": "string",
"maxLength": 100,
"description": "Specifies the module name"
},
"trigger": {
"type": "array",
"items": {
"enum": [
"approval",
"workflow",
"blueprint",
"pathfinder",
"orchestration"
],
"type": "string",
"description": "Type of automation trigger to be executed."
},
"maxItems": 100,
"description": "List of automation triggers to invoke during the record operation."
},
"recordID": {
"type": "string",
"format": "int64",
"description": "This ID is used to uniquely identify a record"
},
"skip_feature_execution": {
"type": "array",
"items": {
"type": "object",
"description": "Feature skip configuration object.",
"additionalProperties": true
},
"maxItems": 100,
"description": "List of features that should be skipped during record processing."
},
"apply_feature_execution": {
"type": "array",
"items": {
"type": "object",
"description": "Feature execution configuration object.",
"additionalProperties": true
},
"maxItems": 100,
"description": "List of features that should be executed on demand during record processing."
}
}
}