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": "6776aee1-19a0-4b4e-8cae-711ec3162c7e",
"CreateDate": "2026-02-28T22:43:35Z",
"EditDate": "2026-02-28T22:43:35Z"
},
{
"Price": 1.0,
"Cost": 2.0,
"ItemNumber": "sample string 3",
"Name": "sample string 4",
"ID": "6776aee1-19a0-4b4e-8cae-711ec3162c7e",
"CreateDate": "2026-02-28T22:43:35Z",
"EditDate": "2026-02-28T22:43:35Z"
}
]