POST api/v1/deliveries/delivered
Sets the delivery as further processed.
Request Information
URI Parameters
None.
Body Parameters
The delivery booking.
DeliveryBookingName | Description | Type | Additional information |
---|---|---|---|
DeliveryId | globally unique identifier |
Required |
|
DeliveryDateTime | date |
Required |
|
DeliveryNumber | string |
Required |
Request Formats
application/json, text/json
Sample:
{ "DeliveryId": "a7066439-af4b-4f8e-b3a4-16cc3a23c1f4", "DeliveryDateTime": "2024-03-28T00:40:40.6347328+01:00", "DeliveryNumber": "sample string 3" }
text/html
Sample:
{"DeliveryId":"a7066439-af4b-4f8e-b3a4-16cc3a23c1f4","DeliveryDateTime":"2024-03-28T00:40:40.6347328+01: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>2024-03-28T00:40:40.6347328+01:00</DeliveryDateTime> <DeliveryId>a7066439-af4b-4f8e-b3a4-16cc3a23c1f4</DeliveryId> <DeliveryNumber>sample string 3</DeliveryNumber> </DeliveryBooking>
application/x-www-form-urlencoded
Sample:
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>