POST api/Posting/TransRequery

Request Information

URI Parameters

None.

Body Parameters

RequeryRequest
NameDescriptionTypeAdditional information
SourceAccount

string

None.

Amount

decimal number

None.

Narration

string

None.

StartDate

string

None.

EndDate

string

None.

TransRef

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SourceAccount": "sample string 1",
  "Amount": 2.1,
  "Narration": "sample string 3",
  "StartDate": "sample string 4",
  "EndDate": "sample string 5",
  "TransRef": "sample string 6"
}

application/xml, text/xml

Sample:
<RequeryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <Amount>2.1</Amount>
  <EndDate>sample string 5</EndDate>
  <Narration>sample string 3</Narration>
  <SourceAccount>sample string 1</SourceAccount>
  <StartDate>sample string 4</StartDate>
  <TransRef>sample string 6</TransRef>
</RequeryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RequeryResponse
NameDescriptionTypeAdditional information
ResponseCode

string

None.

ResponseMessage

string

None.

TranRefNo

string

None.

TraceID

string

None.

TransactionExist

boolean

None.

TimePaid

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2",
  "TranRefNo": "sample string 3",
  "TraceID": "sample string 4",
  "TransactionExist": true,
  "TimePaid": "sample string 6"
}

application/xml, text/xml

Sample:
<RequeryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
  <TimePaid>sample string 6</TimePaid>
  <TraceID>sample string 4</TraceID>
  <TranRefNo>sample string 3</TranRefNo>
  <TransactionExist>true</TransactionExist>
</RequeryResponse>