Remove contacts from a deal
documentedUpdate a deal to remove related contacts.
PUT /dev/api/opportunity/partial-update/delete-contactDealsno implementation yet0 runsNo 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://{{$agilecrm_domain}}.agilecrm.com/dev/api/opportunity/partial-update/delete-contact" \
-X PUT \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-u "{{$agilecrm_email}}:{{AGILECRM_API_KEY}}" \
-d '{"id": "{{$opportunity_id}}", "contact_ids": ["{{$contact_id_1}}", "{{$contact_id_2}}"]}'