GET api/me/orders
List all your orders, requires authentication
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of order details
Collection of OrderDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Order ID |
integer |
None. |
| CustomerID |
ID of ordering customer |
integer |
None. |
| AccountID |
ID of receiving account |
string |
None. |
| UserID |
ID of responsible Webb-SMS User |
integer |
None. |
| TransactionID |
ID of order transaction |
string |
None. |
| UserReference |
ID of responsible iP.1 User |
globally unique identifier |
None. |
| Processed |
Whether the order has been processed |
boolean |
None. |
| CreatedDate |
When the order was placed |
date |
None. |
| ModifiedDate |
When order details were last updated |
date |
None. |
| Code |
Discount code, if any |
string |
None. |
| Items |
Items in the order |
Collection of OrderItemDTO |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CustomerID": 2,
"AccountID": "sample string 3",
"UserID": 4,
"TransactionID": "sample string 5",
"UserReference": "106ab77a-218e-4430-b8be-ff7813fd979f",
"Processed": true,
"CreatedDate": "2026-02-14T04:33:58.5573853+00:00",
"ModifiedDate": "2026-02-14T04:33:58.5573853+00:00",
"Code": "sample string 8",
"Items": [
{
"ProductID": 1,
"Amount": 1.0,
"Level": 1
},
{
"ProductID": 1,
"Amount": 1.0,
"Level": 1
}
]
},
{
"ID": 1,
"CustomerID": 2,
"AccountID": "sample string 3",
"UserID": 4,
"TransactionID": "sample string 5",
"UserReference": "106ab77a-218e-4430-b8be-ff7813fd979f",
"Processed": true,
"CreatedDate": "2026-02-14T04:33:58.5573853+00:00",
"ModifiedDate": "2026-02-14T04:33:58.5573853+00:00",
"Code": "sample string 8",
"Items": [
{
"ProductID": 1,
"Amount": 1.0,
"Level": 1
},
{
"ProductID": 1,
"Amount": 1.0,
"Level": 1
}
]
}
]