PUT api/SalesOrder?orderNo={orderNo}
Endpoint for updating orderhead for a given order
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderNo | integer |
Required |
Body Parameters
PutSaleOrderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FactoringNo | string |
None. |
|
| CustomerOrSupplierOrderNo | string |
None. |
|
| RequisitionNo | string |
None. |
|
| WarehouseNo | integer |
None. |
|
| OrgUnit1No | integer |
None. |
|
| DeliveryMethod | integer |
None. |
|
| RequiredDeliveryDate | date |
None. |
|
| OrderNo | integer |
None. |
|
| CustomerNo | integer |
None. |
|
| CustomerName | string |
None. |
|
| AddressLine1 | string |
None. |
|
| AddressLine2 | string |
None. |
|
| PostCode | string |
None. |
|
| PostArea | string |
None. |
|
| CountryNo | integer |
None. |
|
| OrderDate | date |
None. |
|
| InvoiceCustomerNo | integer |
None. |
|
| EmployeeNo | integer |
None. |
|
| SellerOrBuyer | integer |
None. |
|
| OurReference | string |
None. |
|
| YourReference | string |
None. |
|
| Group1 | integer |
None. |
|
| Information1 | string |
None. |
|
| Information2 | string |
None. |
|
| Information3 | string |
None. |
|
| Information4 | string |
None. |
|
| Information5 | string |
None. |
|
| Information6 | string |
None. |
|
| Information7 | string |
None. |
|
| Information8 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FactoringNo": "sample string 1",
"CustomerOrSupplierOrderNo": "sample string 2",
"RequisitionNo": "sample string 3",
"WarehouseNo": 4,
"OrgUnit1No": 5,
"DeliveryMethod": 6,
"RequiredDeliveryDate": "2026-07-27 21:15",
"OrderNo": 8,
"CustomerNo": 9,
"CustomerName": "sample string 10",
"AddressLine1": "sample string 11",
"AddressLine2": "sample string 12",
"PostCode": "sample string 13",
"PostArea": "sample string 14",
"CountryNo": 15,
"OrderDate": "2026-07-27 21:15",
"InvoiceCustomerNo": 17,
"EmployeeNo": 18,
"SellerOrBuyer": 19,
"OurReference": "sample string 20",
"YourReference": "sample string 21",
"Group1": 22,
"Information1": "sample string 23",
"Information2": "sample string 24",
"Information3": "sample string 25",
"Information4": "sample string 26",
"Information5": "sample string 27",
"Information6": "sample string 28",
"Information7": "sample string 29",
"Information8": "sample string 30"
}
application/xml, text/xml
Sample:
<PutSaleOrderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VBABPILIB.Dto.Put"> <AddressLine1>sample string 11</AddressLine1> <AddressLine2>sample string 12</AddressLine2> <CountryNo>15</CountryNo> <CustomerName>sample string 10</CustomerName> <CustomerNo>9</CustomerNo> <CustomerOrSupplierOrderNo>sample string 2</CustomerOrSupplierOrderNo> <DeliveryMethod>6</DeliveryMethod> <EmployeeNo>18</EmployeeNo> <FactoringNo>sample string 1</FactoringNo> <Group1>22</Group1> <Information1>sample string 23</Information1> <Information2>sample string 24</Information2> <Information3>sample string 25</Information3> <Information4>sample string 26</Information4> <Information5>sample string 27</Information5> <Information6>sample string 28</Information6> <Information7>sample string 29</Information7> <Information8>sample string 30</Information8> <InvoiceCustomerNo>17</InvoiceCustomerNo> <OrderDate>2026-07-27T21:15:47.8231148+02:00</OrderDate> <OrderNo>8</OrderNo> <OrgUnit1No>5</OrgUnit1No> <OurReference>sample string 20</OurReference> <PostArea>sample string 14</PostArea> <PostCode>sample string 13</PostCode> <RequiredDeliveryDate>2026-07-27T21:15:47.8231148+02:00</RequiredDeliveryDate> <RequisitionNo>sample string 3</RequisitionNo> <SellerOrBuyer>19</SellerOrBuyer> <WarehouseNo>4</WarehouseNo> <YourReference>sample string 21</YourReference> </PutSaleOrderDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |