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 OrderDTOName | 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": "21a59b47-9c68-4e85-8adb-bae91034108a", "Processed": true, "CreatedDate": "2025-03-08T03:30:22.0187977+00:00", "ModifiedDate": "2025-03-08T03:30:22.0187977+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": "21a59b47-9c68-4e85-8adb-bae91034108a", "Processed": true, "CreatedDate": "2025-03-08T03:30:22.0187977+00:00", "ModifiedDate": "2025-03-08T03:30:22.0187977+00:00", "Code": "sample string 8", "Items": [ { "ProductID": 1, "Amount": 1.0, "Level": 1 }, { "ProductID": 1, "Amount": 1.0, "Level": 1 } ] } ]