Sign in

Update deal (partial)

documented

Partial update of a deal.

PUT /dev/api/opportunity/partial-updateDealsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$domain}}.agilecrm.com/dev/api/opportunity/partial-update" \
  -X PUT \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"id":"{{$id}}","name":"{{$name}}","expected_value":"{{$expected_value}}","probability":"{{$probability}}","milestone":"{{$milestone}}","contact_ids":["{{$contact_id1}}","{{$contact_id2}}"],"custom_data":[{"name":"{{$custom_name}}","value":"{{$custom_value}}"}]}' \
  -u "{{$AGILECRM_EMAIL}}:{{$AGILECRM_API_KEY}}" \
  -v
Update deal (partial) · Agile CRM · OpenIntegrations