POST api/Tms/PostBidNew

Request Information

URI Parameters

None.

Body Parameters

PostBidNewBinding
NameDescriptionTypeAdditional information
ShipmentId

integer

Required

VendorId

integer

Required

Amount

decimal number

Required

IsTendered

boolean

None.

Note

string

None.

PickupAppointmentDate

date

None.

DeliveryDate

date

None.

SpecialReq

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ShipmentId": 1,
  "VendorId": 2,
  "Amount": 3.0,
  "IsTendered": true,
  "Note": "sample string 5",
  "PickupAppointmentDate": "2025-12-05T22:23:21.3315774-08:00",
  "DeliveryDate": "2025-12-05T22:23:21.3315774-08:00",
  "SpecialReq": "sample string 6"
}

application/xml, text/xml

Sample:
<PostBidNewBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMpowerCore.ViewModels.TransloadOrders">
  <Amount>3</Amount>
  <DeliveryDate>2025-12-05T22:23:21.3315774-08:00</DeliveryDate>
  <IsTendered>true</IsTendered>
  <Note>sample string 5</Note>
  <PickupAppointmentDate>2025-12-05T22:23:21.3315774-08:00</PickupAppointmentDate>
  <ShipmentId>1</ShipmentId>
  <SpecialReq>sample string 6</SpecialReq>
  <VendorId>2</VendorId>
</PostBidNewBinding>

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.