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
OpportunityProductName | 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. |
|
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": "3b078d93-a68b-4e3a-b100-882e25ba1b24", "ProductID": "58cc18d5-827d-439a-b84f-3254b9962732", "OpportunityProductID": "4f0dfab7-b5dc-4c2e-acfa-9053c908acf0", "CreateDate": "2024-12-05T02:20:23Z", "Discount": 6.0, "Price": 7.0, "ItemNumber": "sample string 8", "Name": "sample string 9", "Cost": 10.0, "DiscountPrice": 11.0, "CustomFields": { "sample string 1": {}, "sample string 3": {} } }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.