POST api/my/basura/volume/add

Request Information

URI Parameters

None.

Body Parameters

VolumeAddDTO
NameDescriptionTypeAdditional information
volume

decimal number

None.

ticketId

integer

None.

isReceived

boolean

None.

tripTicket

string

None.

Request Formats

application/json, text/json

Sample:
{
  "volume": 1.0,
  "ticketId": 2,
  "isReceived": true,
  "tripTicket": "sample string 4"
}

application/xml, text/xml

Sample:
<VolumeAddDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DTO">
  <isReceived>true</isReceived>
  <ticketId>2</ticketId>
  <tripTicket>sample string 4</tripTicket>
  <volume>1</volume>
</VolumeAddDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'VolumeAddDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.