crm_batch_update_objects
Batch update multiple CRM objects (e.g., companies, contacts, deals) in a single API request to streamline data management and improve efficiency.
Instructions
Update multiple CRM objects in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes | ||
objectType | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputs": {
"items": {
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"properties": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"id",
"properties"
],
"type": "object"
},
"type": "array"
},
"objectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
}
},
"required": [
"objectType",
"inputs"
],
"type": "object"
}