POST api/orders/all?email={email}&isDebug={isDebug}
Get the registered orders for a customer by email
Request Information
URI Parameters
| Name | Description | Type |
|---|---|---|
|
The email address must be in use in Navision [required] |
string |
Body Parameters
None.
Response Information
Resource Description
List of OrderSummary if successful. Exception (Status 500) Otherwise.
Collection of OrderSummary| Name | Description | Type |
|---|---|---|
| OrderNo |
Order number |
string |
| Status |
Order status Possible values are 'Uferdig' (Open), 'Registrert' (Done), empty |
string |
| TransactionId |
Transaction Id |
string |
|
|
string | |
| Date |
Order Date |
string |
Sample:
[
{
"OrderNo": "str 2",
"Status": "str 3",
"TransactionId": "str 5",
"Email": "str 7",
"Date": "str 9"
},
{
"OrderNo": "str 2",
"Status": "str 3",
"TransactionId": "str 5",
"Email": "str 7",
"Date": "str 9"
}
]