POST api/me/orders
Places an order for an exising customer, requires authentication
Request Information
URI Parameters
None.
Body Parameters
Order details and optional customer details
UpdatedCustomerOrderDTOName | Description | Type | Additional information |
---|---|---|---|
UserID |
ID of the Webb-SMS User placing the order |
integer |
None. |
UserReference |
ID of the iP.1 User placing the order |
globally unique identifier |
None. |
Customer |
Updated customer details, if an update is desired |
UpdateCustomerDTO |
None. |
Invoice |
Whether the order will be paid by invoice |
boolean |
None. |
Code |
Discount code, if any |
string |
None. |
Items |
Items in the order |
Collection of OrderItemDTO |
Required |
Request Formats
application/json, text/json
{ "UserID": 1, "UserReference": "7d694801-6a7c-4a2b-a85c-140237c018f7", "Customer": { "ID": 1, "OrgNr": "sample string 2", "VAT": "sample string 3", "Name": "sample string 4", "Address1": "sample string 5", "Address2": "sample string 6", "ZIP": "sample string 7", "City": "sample string 8", "CountryID": 9, "InvoiceReference": "sample string 10", "InvoiceEmail": "sample string 11" }, "Invoice": true, "Code": "sample string 4", "Items": [ { "ProductID": 1, "Amount": 1.0, "Level": 1 }, { "ProductID": 1, "Amount": 1.0, "Level": 1 } ] }
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
Order details
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
{ "ID": 1, "CustomerID": 2, "AccountID": "sample string 3", "UserID": 4, "TransactionID": "sample string 5", "UserReference": "1604235a-7002-44d1-9328-6460e3bc5732", "Processed": true, "CreatedDate": "2025-03-08T20:35:53.4718701+00:00", "ModifiedDate": "2025-03-08T20:35:53.4718701+00:00", "Code": "sample string 8", "Items": [ { "ProductID": 1, "Amount": 1.0, "Level": 1 }, { "ProductID": 1, "Amount": 1.0, "Level": 1 } ] }