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": "e0789b63-8d69-4a10-b68b-152392997d78",
"CreateDate": "2026-01-01T11:49:49Z",
"EditDate": "2026-01-01T11:49:49Z"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.