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
UpdatedCustomerOrderDTO| Name | 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
Sample:
{
"UserID": 1,
"UserReference": "093f9f94-f426-4579-a420-e762dc340e3c",
"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:
Response Information
Resource Description
Order details
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": "e4eb8dd7-b48e-4df8-8d69-a0d7a302da97",
"Processed": true,
"CreatedDate": "2025-12-14T21:23:29.4184101+00:00",
"ModifiedDate": "2025-12-14T21:23:29.4184101+00:00",
"Code": "sample string 8",
"Items": [
{
"ProductID": 1,
"Amount": 1.0,
"Level": 1
},
{
"ProductID": 1,
"Amount": 1.0,
"Level": 1
}
]
}