POST api/v1/deliveries/delivered
Request Information
URI Parameters
None.
Body Parameters
DeliveryBooking| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryId | globally unique identifier |
Required |
|
| DeliveryDateTime | date |
Required |
|
| DeliveryNumber | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"DeliveryId": "40280197-9b60-4e3f-a0f9-47aaf68d5725",
"DeliveryDateTime": "2026-08-03T18:21:11.3392621+02:00",
"DeliveryNumber": "sample string 3"
}
text/html
Sample:
{"DeliveryId":"40280197-9b60-4e3f-a0f9-47aaf68d5725","DeliveryDateTime":"2026-08-03T18:21:11.3392621+02:00","DeliveryNumber":"sample string 3"}
application/xml, text/xml
Sample:
<DeliveryBooking xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Accounting"> <DeliveryDateTime>2026-08-03T18:21:11.3392621+02:00</DeliveryDateTime> <DeliveryId>40280197-9b60-4e3f-a0f9-47aaf68d5725</DeliveryId> <DeliveryNumber>sample string 3</DeliveryNumber> </DeliveryBooking>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>