Update deal
documentedUpdate properties of a deal (v2).
PATCH /api/v2/deals/{id}Dealsno 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://api.pipedrive.com/api/v2/deals/{{$id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "value": {{$value}}, "currency": "{{$currency}}", "stage_id": {{$stage_id}}, "pipeline_id": {{$pipeline_id}}, "person_id": {{$person_id}}, "org_id": {{$org_id}}, "owner_id": {{$owner_id}}, "archive_time": "{{$archive_time}}", "is_deleted": {{$is_deleted}}, "is_archived": {{$is_archived}} }' \
# Source: Pipedrive API docs - PATCH /api/v2/deals/{id}