PUT api/Products/{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
Product| Name | Description | Type | Additional information |
|---|---|---|---|
| Price | decimal number |
None. |
|
| Cost | decimal number |
None. |
|
| ItemNumber | string |
None. |
|
| Name | string |
None. |
|
| ID | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
|
| EditDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Price": 1.0,
"Cost": 2.0,
"ItemNumber": "sample string 3",
"Name": "sample string 4",
"ID": "966dc8d9-d63a-48e7-84dc-aed1b65012ed",
"CreateDate": "2025-11-04T19:56:34Z",
"EditDate": "2025-11-04T19:56:34Z"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.