PUT api/OpportunityProducts/{id}
Update an existing Product. This is not a partial update therefore, please pass in the full Process object to your request. For partial updates, use the PATCH endpoint
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Record Id |
globally unique identifier |
Required |
Body Parameters
Serialized Product record in the body of the request
OpportunityProduct| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | decimal number |
None. |
|
| Quantity | decimal number |
None. |
|
| OpportunityID | globally unique identifier |
None. |
|
| ProductID | globally unique identifier |
None. |
|
| OpportunityProductID | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
|
| EditDate | date |
None. |
|
| Discount | decimal number |
None. |
|
| Price | decimal number |
None. |
|
| ItemNumber | string |
None. |
|
| Name | string |
None. |
|
| Cost | decimal number |
None. |
|
| DiscountPrice | decimal number |
None. |
|
| CustomFields | Dictionary of string [key] and Object [value] |
None. |
Request Formats
application/json, text/json
Sample:
{
"Total": 1.0,
"Quantity": 2.0,
"OpportunityID": "3c6ca5c0-2077-49e4-8e20-1d43daa4c819",
"ProductID": "148faed8-73b8-4480-b4b0-1f8049789f72",
"OpportunityProductID": "d22a5372-d9e3-44b2-a13d-19c7d79e915d",
"CreateDate": "2026-01-14T05:27:40Z",
"EditDate": "2026-01-14T05:27:40Z",
"Discount": 7.0,
"Price": 8.0,
"ItemNumber": "sample string 9",
"Name": "sample string 10",
"Cost": 11.0,
"DiscountPrice": 12.0,
"CustomFields": {
"sample string 1": {},
"sample string 3": {}
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.