POST api/Roadwise/Transaction/Book

Request Information

URI Parameters

None.

Body Parameters

TransactionCreateDTO
NameDescriptionTypeAdditional information
clientId

integer

None.

refNo

string

None.

amount

decimal number

None.

type

string

None.

Request Formats

application/json, text/json

Sample:
{
  "clientId": 1,
  "refNo": "sample string 2",
  "amount": 3.0,
  "type": "sample string 4"
}

application/xml, text/xml

Sample:
<TransactionCreateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RoadwiseSVC.Models.DTO">
  <amount>3</amount>
  <clientId>1</clientId>
  <refNo>sample string 2</refNo>
  <type>sample string 4</type>
</TransactionCreateDTO>

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 'TransactionCreateDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.