GET api/Products
Get all products matching an optional Filter. Supported Headers: SelectField, Filter, Sort, SortDesc
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of 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": "cb56802e-9979-41c6-9b57-19eac8c54a74",
"CreateDate": "2026-02-28T23:49:08Z",
"EditDate": "2026-02-28T23:49:08Z"
},
{
"Price": 1.0,
"Cost": 2.0,
"ItemNumber": "sample string 3",
"Name": "sample string 4",
"ID": "cb56802e-9979-41c6-9b57-19eac8c54a74",
"CreateDate": "2026-02-28T23:49:08Z",
"EditDate": "2026-02-28T23:49:08Z"
}
]