POST api/v1/OtherDelivery/newBulkPumpInDelivery

Create a new Bulk Delivery record from Bulk Pump-in collections for this truck. Use this method when a large container truck has pumped in uco from multiple collection locations.

Request Information

URI Parameters

None.

Body Parameters

Header information for delivery

iCollectBulkDeliveryPost
NameDescriptionTypeAdditional information
totaldelivered

decimal number

None.

userid

globally unique identifier

None.

datetimeofdelivery

date

None.

truckrego

string

None.

staffid

integer

None.

comments

string

None.

Request Formats

application/json, text/json

Sample:
{
  "totaldelivered": 1.0,
  "userid": "379a2ba4-8cef-451b-974b-9d933b91f9dc",
  "datetimeofdelivery": "2026-08-16T17:18:53.9524802+00:00",
  "truckrego": "sample string 3",
  "staffid": 4,
  "comments": "sample string 5"
}

application/xml, text/xml

Sample:
<iCollectBulkDeliveryPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NFuels_Database.sharedmodels.Deliveries">
  <comments>sample string 5</comments>
  <datetimeofdelivery>2026-08-16T17:18:53.9524802+00:00</datetimeofdelivery>
  <staffid>4</staffid>
  <truckrego>sample string 3</truckrego>
  <userid>379a2ba4-8cef-451b-974b-9d933b91f9dc</userid>
  <totaldelivered>1</totaldelivered>
</iCollectBulkDeliveryPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

iCollectDeliveryPostResult
NameDescriptionTypeAdditional information
ucodeliveryid

integer

None.

errormessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ucodeliveryid": 1,
  "errormessage": "sample string 2"
}

application/xml, text/xml

Sample:
<iCollectDeliveryPostResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NFuels_Database.sharedmodels.Deliveries">
  <errormessage>sample string 2</errormessage>
  <ucodeliveryid>1</ucodeliveryid>
</iCollectDeliveryPostResult>