POST api/Products
Create a new Product
Request Information
URI Parameters
None.
Body Parameters
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": "aa5a9a97-7602-4495-94d9-c886e82d98ef",
"CreateDate": "2026-01-01T22:51:28Z",
"EditDate": "2026-01-01T22:51:28Z"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"c989ab0e-3ec2-4ff6-9603-4fd61b6a1851"