POST api/Tms/PostBidNew
Request Information
URI Parameters
None.
Body Parameters
PostBidNewBinding| Name | Description | Type | Additional 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-05T23:03:56.6947516-08:00",
"DeliveryDate": "2025-12-05T23:03:56.6957513-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-05T23:03:56.6957513-08:00</DeliveryDate> <IsTendered>true</IsTendered> <Note>sample string 5</Note> <PickupAppointmentDate>2025-12-05T23:03:56.6947516-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
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.