POST api/order/{order}/confirm?token={token}
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| order | No documentation available. |
Define this parameter in the request URI. |
| token | No documentation available. |
Define this parameter in the request URI. |
| confirm | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"shippingCarrier": {
"shippingCarrierCode": "sample string 1",
"shippingCarrierDeliveryType": "sample string 2"
},
"parcelShop": {
"parcelShopIdentification": "sample string 1",
"parcelShopBranchCode": "sample string 2"
},
"deliveryAddress": {
"companyName": "sample string 1",
"addressName": "sample string 2",
"streetWithNumber": "sample string 3",
"city": "sample string 4",
"country": "sample string 5",
"zip": "sample string 6",
"phone": "sample string 7",
"email": "sample string 8",
"note": "sample string 9"
},
"timestamp": "sample string 1",
"customerId": 2,
"regNo": "sample string 3",
"vatNo": "sample string 4",
"shippingCarrierIdentification": "sample string 5",
"shipmentDeliveryType": "sample string 6",
"shipmentShippingMode": "sample string 7",
"demandedExpeditionDate": "sample string 8",
"shipmentDepartureTime": "sample string 9",
"cashOnDeliveryValue": 10.0,
"cashOnDeliveryValueCurrency": "sample string 11",
"paymentVS": "sample string 12",
"deliveryBranchId": 13,
"shipmentValue": 14.0,
"shipmentValueCurrency": "sample string 15"
}
application/xml, text/xml
Sample:
<Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SapAlzaAPI.Models.ConfirmOrder">
<cashOnDeliveryValue>10</cashOnDeliveryValue>
<cashOnDeliveryValueCurrency>sample string 11</cashOnDeliveryValueCurrency>
<customerId>2</customerId>
<deliveryAddress>
<addressName>sample string 2</addressName>
<city>sample string 4</city>
<companyName>sample string 1</companyName>
<country>sample string 5</country>
<email>sample string 8</email>
<note>sample string 9</note>
<phone>sample string 7</phone>
<streetWithNumber>sample string 3</streetWithNumber>
<zip>sample string 6</zip>
</deliveryAddress>
<deliveryBranchId>13</deliveryBranchId>
<demandedExpeditionDate>sample string 8</demandedExpeditionDate>
<parcelShop>
<parcelShopBranchCode>sample string 2</parcelShopBranchCode>
<parcelShopIdentification>sample string 1</parcelShopIdentification>
</parcelShop>
<paymentVS>sample string 12</paymentVS>
<regNo>sample string 3</regNo>
<shipmentDeliveryType>sample string 6</shipmentDeliveryType>
<shipmentDepartureTime>sample string 9</shipmentDepartureTime>
<shipmentShippingMode>sample string 7</shipmentShippingMode>
<shipmentValue>14</shipmentValue>
<shipmentValueCurrency>sample string 15</shipmentValueCurrency>
<shippingCarrier>
<shippingCarrierCode>sample string 1</shippingCarrierCode>
<shippingCarrierDeliveryType>sample string 2</shippingCarrierDeliveryType>
</shippingCarrier>
<shippingCarrierIdentification>sample string 5</shippingCarrierIdentification>
<timestamp>sample string 1</timestamp>
<vatNo>sample string 4</vatNo>
</Order>
application/x-www-form-urlencoded
Sample:
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"errorCode": 1,
"errorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SapAlzaAPI.Models.ConfirmOrder"> <errorCode>1</errorCode> <errorMessage>sample string 2</errorMessage> </Response>