CRM · salesforce_update
Modifier Salesforce
Met à jour des champs d'un enregistrement Salesforce.
- Prix
- inclus
- Prérequis
- Salesforce
- à brancher dans Paramètres → Intégrations
- Validation humaine
- Oui, par défaut
- écriture vers l'extérieur : un humain valide
Entrée
| Champ | Type | Description |
|---|---|---|
| updates | array | Batch update: the FULL list of records to update in one call (preferred whenever there is more than one). Each item = { object, id, fields }. Up to 200 per call; larger lists chunked automatically. When provided, the top-level fields are ignored. |
| object | Contact | Lead | Account | Opportunity | Single update: Salesforce object type. Ignored when `updates` is provided. |
| id | string | Salesforce record ID (15 or 18 characters) |
| fields | object | Key-value pairs of fields to update (e.g. {"StageName": "Closed Won", "Amount": 5000}) |
Appeler cet outil
Via l'API HTTP, ou depuis le serveur MCP avec le méta-outil run.
curl https://api.ezyagents.fr/gateway/v1/run \
-H "Authorization: Bearer ezk_…" -H "Content-Type: application/json" \
-d '{"tool":"salesforce_update","input":{"updates":[],"object":"Contact","id":"…","fields":"…"}}'$
run({ "tool": "salesforce_update", "input": {"updates":[],"object":"Contact","id":"…","fields":"…"} })