Tous les outils

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

ChampTypeDescription
updatesarrayBatch 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.
objectContact | Lead | Account | OpportunitySingle update: Salesforce object type. Ignored when `updates` is provided.
idstringSalesforce record ID (15 or 18 characters)
fieldsobjectKey-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":"…"} })