POST api/Biding/CreateVehicleSize
Request Information
URI Parameters
None.
Body Parameters
VehicleSizeDto| Name | Description | Type | Additional 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": "2025-12-11T01:23:00.9882828+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>2025-12-11T01:23:00.9882828+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
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.