POST API/Transaction/Search

Request Information

URI Parameters

None.

Body Parameters

TransactionsSearchRequest
NameDescriptionTypeAdditional information
AccountID

integer

None.

TransType

string

None.

ServiceID

integer

None.

TransFromDate

string

None.

TransToDate

string

None.

RetRefNumber

string

None.

TransDetail

string

None.

Signature

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountID": 1,
  "TransType": "sample string 2",
  "ServiceID": 3,
  "TransFromDate": "sample string 4",
  "TransToDate": "sample string 5",
  "RetRefNumber": "sample string 6",
  "TransDetail": "sample string 7",
  "Signature": "sample string 8"
}

application/xml, text/xml

Sample:
<TransactionsSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pis.Apay.Mobile.Api.Models">
  <AccountID>1</AccountID>
  <RetRefNumber>sample string 6</RetRefNumber>
  <ServiceID>3</ServiceID>
  <Signature>sample string 8</Signature>
  <TransDetail>sample string 7</TransDetail>
  <TransFromDate>sample string 4</TransFromDate>
  <TransToDate>sample string 5</TransToDate>
  <TransType>sample string 2</TransType>
</TransactionsSearchRequest>

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

Response Information

Resource Description

ResponseObject
NameDescriptionTypeAdditional information
Code

string

None.

ListValue

Collection of Object

None.

Message

string

None.

Time

string

None.

Value

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": "sample string 1",
  "ListValue": [
    {},
    {}
  ],
  "Message": "sample string 2",
  "Time": "sample string 3",
  "Value": {}
}

application/xml, text/xml

Sample:
<ResponseObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pis.Admin.Lib">
  <Code>sample string 1</Code>
  <ListValue xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:anyType />
    <d2p1:anyType />
  </ListValue>
  <Message>sample string 2</Message>
  <Time>sample string 3</Time>
  <Value />
</ResponseObject>