GET api/TransactionsRest

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Transaction
NameDescriptionTypeAdditional information
TransactionID

integer

None.

MerchantID

integer

None.

UPC

string

None.

PaymentAmount

integer

None.

PaymentReference

string

None.

PaymentParticulars

string

None.

MerchantName

string

None.

MerchantAccountNumber

string

None.

PaymentDate

date

None.

Reconciled

boolean

None.

ToAccount

string

None.

FromAccount

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TransactionID": 1,
    "MerchantID": 2,
    "UPC": "sample string 3",
    "PaymentAmount": 4,
    "PaymentReference": "sample string 5",
    "PaymentParticulars": "sample string 6",
    "MerchantName": "sample string 7",
    "MerchantAccountNumber": "sample string 8",
    "PaymentDate": "2025-07-06T02:07:12.7759739+00:00",
    "Reconciled": true,
    "ToAccount": "sample string 11",
    "FromAccount": "sample string 12"
  },
  {
    "TransactionID": 1,
    "MerchantID": 2,
    "UPC": "sample string 3",
    "PaymentAmount": 4,
    "PaymentReference": "sample string 5",
    "PaymentParticulars": "sample string 6",
    "MerchantName": "sample string 7",
    "MerchantAccountNumber": "sample string 8",
    "PaymentDate": "2025-07-06T02:07:12.7759739+00:00",
    "Reconciled": true,
    "ToAccount": "sample string 11",
    "FromAccount": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransaction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InnoBank.Models">
  <Transaction>
    <FromAccount>sample string 12</FromAccount>
    <MerchantAccountNumber>sample string 8</MerchantAccountNumber>
    <MerchantID>2</MerchantID>
    <MerchantName>sample string 7</MerchantName>
    <PaymentAmount>4</PaymentAmount>
    <PaymentDate>2025-07-06T02:07:12.7759739+00:00</PaymentDate>
    <PaymentParticulars>sample string 6</PaymentParticulars>
    <PaymentReference>sample string 5</PaymentReference>
    <Reconciled>true</Reconciled>
    <ToAccount>sample string 11</ToAccount>
    <TransactionID>1</TransactionID>
    <UPC>sample string 3</UPC>
  </Transaction>
  <Transaction>
    <FromAccount>sample string 12</FromAccount>
    <MerchantAccountNumber>sample string 8</MerchantAccountNumber>
    <MerchantID>2</MerchantID>
    <MerchantName>sample string 7</MerchantName>
    <PaymentAmount>4</PaymentAmount>
    <PaymentDate>2025-07-06T02:07:12.7759739+00:00</PaymentDate>
    <PaymentParticulars>sample string 6</PaymentParticulars>
    <PaymentReference>sample string 5</PaymentReference>
    <Reconciled>true</Reconciled>
    <ToAccount>sample string 11</ToAccount>
    <TransactionID>1</TransactionID>
    <UPC>sample string 3</UPC>
  </Transaction>
</ArrayOfTransaction>