POST api/MobileTaxi/TaxiServicePaymentMobile

Request Information

URI Parameters

None.

Body Parameters

TaxiServicePayMobile
NameDescriptionTypeAdditional information
CardID

integer

None.

PaymentMethod

integer

None.

dNumMonto

decimal number

None.

Fare

decimal number

None.

CardType

integer

None.

DriverID

integer

None.

TaxiServiceID

integer

None.

CompanyID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CardID": 1,
  "PaymentMethod": 2,
  "dNumMonto": 3.0,
  "Fare": 4.0,
  "CardType": 5,
  "DriverID": 6,
  "TaxiServiceID": 7,
  "CompanyID": 8
}

application/xml, text/xml

Sample:
<MobileTaxiController.TaxiServicePayMobile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomerAPI.Controllers">
  <CardID>1</CardID>
  <CardType>5</CardType>
  <CompanyID>8</CompanyID>
  <DriverID>6</DriverID>
  <Fare>4</Fare>
  <PaymentMethod>2</PaymentMethod>
  <TaxiServiceID>7</TaxiServiceID>
  <dNumMonto>3</dNumMonto>
</MobileTaxiController.TaxiServicePayMobile>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>