How can i send more than one product in add products to deal?

I need to add more than one products a deal but this payload doesnt work

{
“data”: [
{
“product_id”: 2149,
“item_price”: 615,
“quantity”: 3
}
]
}

in this url
https://api.pipedrive.com/v1/deals/98312/products

Hello, @tecnologiaCannect :wave:

The POST /deals/{id}/products endpoint supports adding 1 product at a time and not multiple products at once.

Here’s an example payload for the 3 parameters:

{
  "product_id": 1,
  "item_price": 15,
  "quantity": 3
}

Sincerely,
Helena