POST api/v1/deliveries/delivered

Request Information

URI Parameters

None.

Body Parameters

DeliveryBooking
NameDescriptionTypeAdditional information
DeliveryId

globally unique identifier

Required

DeliveryDateTime

date

Required

DeliveryNumber

string

Required

Request Formats

application/json, text/json

Sample:
{
  "DeliveryId": "56dcaab2-805b-439c-9d4a-b23f54fb01e4",
  "DeliveryDateTime": "2025-12-17T22:27:21.7969688+01:00",
  "DeliveryNumber": "sample string 3"
}

text/html

Sample:
{"DeliveryId":"56dcaab2-805b-439c-9d4a-b23f54fb01e4","DeliveryDateTime":"2025-12-17T22:27:21.7969688+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>2025-12-17T22:27:21.7969688+01:00</DeliveryDateTime>
  <DeliveryId>56dcaab2-805b-439c-9d4a-b23f54fb01e4</DeliveryId>
  <DeliveryNumber>sample string 3</DeliveryNumber>
</DeliveryBooking>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response 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>