POST api/Values

Request Information

URI Parameters

None.

Body Parameters

transactions
NameDescriptionTypeAdditional information
tranRef

string

None.

respCode

string

None.

respMessage

string

None.

respStatus

string

None.

acquirerMessage

string

None.

acquirerRRN

string

None.

cartId

string

None.

customerEmail

string

None.

signature

string

None.

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "tranRef": "sample string 1",
  "respCode": "sample string 2",
  "respMessage": "sample string 3",
  "respStatus": "sample string 4",
  "acquirerMessage": "sample string 5",
  "acquirerRRN": "sample string 6",
  "cartId": "sample string 7",
  "customerEmail": "sample string 8",
  "signature": "sample string 9",
  "token": "sample string 10"
}

application/xml, text/xml

Sample:
<transactions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication9.Models">
  <acquirerMessage>sample string 5</acquirerMessage>
  <acquirerRRN>sample string 6</acquirerRRN>
  <cartId>sample string 7</cartId>
  <customerEmail>sample string 8</customerEmail>
  <respCode>sample string 2</respCode>
  <respMessage>sample string 3</respMessage>
  <respStatus>sample string 4</respStatus>
  <signature>sample string 9</signature>
  <token>sample string 10</token>
  <tranRef>sample string 1</tranRef>
</transactions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of string

Response Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>