PUT api/Biding/UpdateLoad?id={id}&pin={pin}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| pin | string |
None. |
Body Parameters
LoadDtoPostReq| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CompanyId | integer |
None. |
|
| RouteId | integer |
None. |
|
| VehicleTypeId | integer |
None. |
|
| VehicleSizeId | integer |
None. |
|
| CBM | integer |
None. |
|
| StartDate | date |
None. |
|
| Hours | integer |
None. |
|
| PaymentType | string |
None. |
|
| UnitofMeasure | string |
None. |
|
| Remarks | string |
None. |
|
| FixedAmount | decimal number |
None. |
|
| BidAmount | decimal number |
None. |
|
| BidFrequency | integer |
None. |
|
| LoadType | string |
None. |
|
| PreviousPaymentType | string |
None. |
|
| BidStatus | boolean |
None. |
|
| BidCloseDate | date |
None. |
|
| BidActiveDate | date |
None. |
|
| UserId | integer |
None. |
|
| CreatedBy | string |
None. |
|
| CreatedAt | date |
None. |
|
| UpdatedBy | string |
None. |
|
| UpdatedAt | date |
None. |
|
| RouteName | string |
None. |
|
| VehicleType | VehicleTypeDto |
None. |
|
| Company | CompanyDto |
None. |
|
| Route | RouteResponseDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CompanyId": 1,
"RouteId": 1,
"VehicleTypeId": 1,
"VehicleSizeId": 1,
"CBM": 2,
"StartDate": "2025-12-11T01:21:26.1817913+05:00",
"Hours": 3,
"PaymentType": "sample string 4",
"UnitofMeasure": "sample string 5",
"Remarks": "sample string 6",
"FixedAmount": 7.0,
"BidAmount": 1.0,
"BidFrequency": 8,
"LoadType": "sample string 9",
"PreviousPaymentType": "sample string 10",
"BidStatus": true,
"BidCloseDate": "2025-12-11T01:21:26.1817913+05:00",
"BidActiveDate": "2025-12-11T01:21:26.1817913+05:00",
"UserId": 11,
"CreatedBy": "sample string 12",
"CreatedAt": "2025-12-11T01:21:26.1817913+05:00",
"UpdatedBy": "sample string 14",
"UpdatedAt": "2025-12-11T01:21:26.1817913+05:00",
"RouteName": "sample string 15",
"VehicleType": {
"Id": 1,
"Vehicletype": "sample string 2",
"VehicleSize": "sample string 3",
"VehicleName": "sample string 4"
},
"Company": {
"Id": 1,
"CompanyName": "sample string 2"
},
"Route": {
"Id": 1,
"RouteName": "sample string 1",
"LocalFleet": 1.0,
"Mileage": "sample string 2",
"RouteCode": "sample string 3"
}
}
application/xml, text/xml
Sample:
<LoadDtoPostReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BidingApp.Data.Dtos">
<BidActiveDate>2025-12-11T01:21:26.1817913+05:00</BidActiveDate>
<BidAmount>1</BidAmount>
<BidCloseDate>2025-12-11T01:21:26.1817913+05:00</BidCloseDate>
<BidFrequency>8</BidFrequency>
<BidStatus>true</BidStatus>
<CBM>2</CBM>
<Company>
<CompanyName>sample string 2</CompanyName>
<Id>1</Id>
</Company>
<CompanyId>1</CompanyId>
<CreatedAt>2025-12-11T01:21:26.1817913+05:00</CreatedAt>
<CreatedBy>sample string 12</CreatedBy>
<FixedAmount>7</FixedAmount>
<Hours>3</Hours>
<Id>1</Id>
<LoadType>sample string 9</LoadType>
<PaymentType>sample string 4</PaymentType>
<PreviousPaymentType>sample string 10</PreviousPaymentType>
<Remarks>sample string 6</Remarks>
<Route>
<Id>1</Id>
<LocalFleet>1</LocalFleet>
<Mileage>sample string 2</Mileage>
<RouteCode>sample string 3</RouteCode>
<RouteName>sample string 1</RouteName>
</Route>
<RouteId>1</RouteId>
<RouteName>sample string 15</RouteName>
<StartDate>2025-12-11T01:21:26.1817913+05:00</StartDate>
<UnitofMeasure>sample string 5</UnitofMeasure>
<UpdatedAt>2025-12-11T01:21:26.1817913+05:00</UpdatedAt>
<UpdatedBy>sample string 14</UpdatedBy>
<UserId>11</UserId>
<VehicleSizeId>1</VehicleSizeId>
<VehicleType>
<Id>1</Id>
<VehicleName>sample string 4</VehicleName>
<VehicleSize>sample string 3</VehicleSize>
<Vehicletype>sample string 2</Vehicletype>
</VehicleType>
<VehicleTypeId>1</VehicleTypeId>
</LoadDtoPostReq>
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.