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": "d5f6b8d9-b7a9-43e2-8f5e-ef118068dd85",
"CreateDate": "2026-04-15T17:01:47Z",
"EditDate": "2026-04-15T17:01:47Z"
}