GET api/Account/GetTransactionInsights?type={type}&transactionid={transactionid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

string

Required

transactionid

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TransactionInsights
NameDescriptionTypeAdditional information
type

string

None.

stats

metrics

None.

Notes

string

None.

NoteImage

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "type": "sample string 1",
    "stats": {
      "count": 1,
      "total": 1.1
    },
    "Notes": "sample string 2",
    "NoteImage": "sample string 3"
  },
  {
    "type": "sample string 1",
    "stats": {
      "count": 1,
      "total": 1.1
    },
    "Notes": "sample string 2",
    "NoteImage": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransactionInsights xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bankiom.DataLayer.Common">
  <TransactionInsights>
    <NoteImage>sample string 3</NoteImage>
    <Notes>sample string 2</Notes>
    <stats>
      <count>1</count>
      <total>1.1</total>
    </stats>
    <type>sample string 1</type>
  </TransactionInsights>
  <TransactionInsights>
    <NoteImage>sample string 3</NoteImage>
    <Notes>sample string 2</Notes>
    <stats>
      <count>1</count>
      <total>1.1</total>
    </stats>
    <type>sample string 1</type>
  </TransactionInsights>
</ArrayOfTransactionInsights>