GET api/Products/{id}
Get Product by Id. Supported Headers: SelectField
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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. |
Response Formats
application/json, text/json
Sample:
{
"Price": 1.0,
"Cost": 2.0,
"ItemNumber": "sample string 3",
"Name": "sample string 4",
"ID": "53aa7341-0f03-43e7-a3be-28c0e5901b91",
"CreateDate": "2026-08-29T12:44:59Z",
"EditDate": "2026-08-29T12:44:59Z"
}