Sign in

Patch deal

documented

Partially update a deal by ID.

PATCH /v2/deals/{deal_id}Dealsno 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://api.moskitcrm.com/v2/deals/{{$deal_id}}" \
  -X PATCH \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "apikey: {{MOSKITCRM_API_KEY}}" \
  -d '{"title":"{{$title}}","value":{{$value}},"currency":"{{$currency}}","close_date":"{{$close_date}}","owner_id":{{$owner_id}},"pipeline_id":{{$pipeline_id}},"stage_id":{{$stage_id}},"description":"{{$description}}"}'
Patch deal · Moskit CRM · OpenIntegrations