POST api/Biding/CreateLoad

Request Information

URI Parameters

None.

Body Parameters

CreateLoadDto
NameDescriptionTypeAdditional information
RouteId

integer

None.

CBM

integer

None.

UserId

integer

None.

Hours

integer

None.

ReferenceNo

string

None.

StartDate

date

None.

LoadType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RouteId": 1,
  "CBM": 2,
  "UserId": 3,
  "Hours": 4,
  "ReferenceNo": "sample string 5",
  "StartDate": "2025-12-11T01:24:52.9988484+05:00",
  "LoadType": "sample string 6"
}

application/xml, text/xml

Sample:
<CreateLoadDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BidingApp.Data.Dtos">
  <CBM>2</CBM>
  <Hours>4</Hours>
  <LoadType>sample string 6</LoadType>
  <ReferenceNo>sample string 5</ReferenceNo>
  <RouteId>1</RouteId>
  <StartDate>2025-12-11T01:24:52.9988484+05:00</StartDate>
  <UserId>3</UserId>
</CreateLoadDto>

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.