POST api/Values/submitPayment?mAmount={mAmount}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
mAmount

string

Required

Body Parameters

None.

Response Information

Resource Description

AuthNetReceipt
NameDescriptionTypeAdditional information
customerId

string

None.

billingName

string

None.

billingAddress

string

None.

billingCityStateZip

string

None.

total

decimal number

None.

description

string

None.

cc4digits

string

None.

authCode

string

None.

customerCode

string

None.

propertyName

string

None.

cc_response

string

None.

Response Formats

application/json, text/json

Sample:
{
  "customerId": "sample string 1",
  "billingName": "sample string 2",
  "billingAddress": "sample string 3",
  "billingCityStateZip": "sample string 4",
  "total": 5.0,
  "description": "sample string 6",
  "cc4digits": "sample string 7",
  "authCode": "sample string 8",
  "customerCode": "sample string 9",
  "propertyName": "sample string 10",
  "cc_response": "sample string 11"
}

application/xml, text/xml

Sample:
<AuthNetReceipt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicWebService.Authorize.net">
  <authCode>sample string 8</authCode>
  <billingAddress>sample string 3</billingAddress>
  <billingCityStateZip>sample string 4</billingCityStateZip>
  <billingName>sample string 2</billingName>
  <cc4digits>sample string 7</cc4digits>
  <cc_response>sample string 11</cc_response>
  <customerCode>sample string 9</customerCode>
  <customerId>sample string 1</customerId>
  <description>sample string 6</description>
  <propertyName>sample string 10</propertyName>
  <total>5</total>
</AuthNetReceipt>