POST api/Label/confirmDrop

Request Information

URI Parameters

None.

Body Parameters

Label
NameDescriptionTypeAdditional information
ID

integer

None.

Small_Label

string

None.

DropDate

date

None.

Destination

string

None.

PickupDate

date

None.

ExpectedPickupDate

date

None.

Priority

integer

None.

Dropped

boolean

None.

Picked

boolean

None.

EntryDate

date

None.

PaymentNumber

string

None.

PaymentAmount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Small_Label": "sample string 2",
  "DropDate": "2026-03-07T00:13:44.2331206-05:00",
  "Destination": "sample string 4",
  "PickupDate": "2026-03-07T00:13:44.2331206-05:00",
  "ExpectedPickupDate": "2026-03-07T00:13:44.2331206-05:00",
  "Priority": 5,
  "Dropped": true,
  "Picked": true,
  "EntryDate": "2026-03-07T00:13:44.2331206-05:00",
  "PaymentNumber": "sample string 6",
  "PaymentAmount": 1
}

application/xml, text/xml

Sample:
<Label xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiLabelTracker.DataAccess">
  <Destination>sample string 4</Destination>
  <DropDate>2026-03-07T00:13:44.2331206-05:00</DropDate>
  <Dropped>true</Dropped>
  <EntryDate>2026-03-07T00:13:44.2331206-05:00</EntryDate>
  <ExpectedPickupDate>2026-03-07T00:13:44.2331206-05:00</ExpectedPickupDate>
  <ID>1</ID>
  <PaymentAmount>1</PaymentAmount>
  <PaymentNumber>sample string 6</PaymentNumber>
  <Picked>true</Picked>
  <PickupDate>2026-03-07T00:13:44.2331206-05:00</PickupDate>
  <Priority>5</Priority>
  <Small_Label>sample string 2</Small_Label>
</Label>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.