Sign in

Update deal product

documented

Update the product attached to a deal (v2).

PATCH /api/v2/deals/{deal_id}/products/{product_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)

Note: The official Pipedrive API v2 endpoint for updating an attached product on a deal is PATCH /api/v2/deals/{deal_id}/products/{product_attachment_id} (the ID in the path is the deal-product attachment ID). See Pipedrive API v2 migration guide and endpoint references. ([pipedrive.readme.io](https://pipedrive.readme.io/docs/pipedrive-api-v2-migration-guide))
npx -y keychains@latest curl "https://api.pipedrive.com/api/v2/deals/{{$deal_id}}/products/{{$product_attachment_id}}" \
  -X PATCH \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"quantity": {{$quantity}}, "item_price": {{$item_price}}, "name": "{{$name}}", "currency": "{{$currency}}", "tax": {{$tax}}, "tax_method": "{{$tax_method}}", "comments": "{{$comments}}", "is_enabled": {{$is_enabled}} }'
Update deal product · Pipedrive · OpenIntegrations