POST api/Biding/CreateVehicleSize

Request Information

URI Parameters

None.

Body Parameters

VehicleSizeDto
NameDescriptionTypeAdditional information
VehicleTypeId

integer

None.

VehicleSize

string

None.

CreatedBy

string

None.

CreatedAt

date

None.

Request Formats

application/json, text/json

Sample:
{
  "VehicleTypeId": 1,
  "VehicleSize": "sample string 2",
  "CreatedBy": "sample string 3",
  "CreatedAt": "2026-01-17T15:27:47.5453387+05:00"
}

application/xml, text/xml

Sample:
<VehicleSizeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BidingApp.Data.Dtos">
  <CreatedAt>2026-01-17T15:27:47.5453387+05:00</CreatedAt>
  <CreatedBy>sample string 3</CreatedBy>
  <VehicleSize>sample string 2</VehicleSize>
  <VehicleTypeId>1</VehicleTypeId>
</VehicleSizeDto>

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.