POST api/Transfer/GetStatementOfAccount

Request Information

URI Parameters

None.

Body Parameters

StatementOfAccountParam
NameDescriptionTypeAdditional information
AccountNumber

string

None.

StartDate

string

None.

EndDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountNumber": "sample string 1",
  "StartDate": "sample string 2",
  "EndDate": "sample string 3"
}

application/xml, text/xml

Sample:
<StatementOfAccountParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.RequestObjs">
  <AccountNumber>sample string 1</AccountNumber>
  <EndDate>sample string 3</EndDate>
  <StartDate>sample string 2</StartDate>
</StatementOfAccountParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StatementOfAccountResponsedata
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

StatementOfAccountResponseObj

StatementOfAccountResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "StatementOfAccountResponseObj": {
    "header": {
      "page_start": 1,
      "page_token": "sample string 2",
      "total_size": 3,
      "page_size": 4,
      "status": "sample string 5"
    },
    "body": [
      {
        "date": "sample string 1",
        "amount": "sample string 2",
        "narration": "sample string 3",
        "debitOrCredit": "sample string 4",
        "closingBalance": "sample string 5",
        "valueDate": "sample string 6",
        "transactionId": "sample string 7"
      },
      {
        "date": "sample string 1",
        "amount": "sample string 2",
        "narration": "sample string 3",
        "debitOrCredit": "sample string 4",
        "closingBalance": "sample string 5",
        "valueDate": "sample string 6",
        "transactionId": "sample string 7"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<StatementOfAccountResponsedata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
  <StatementOfAccountResponseObj>
    <body>
      <dystementofacct>
        <amount>sample string 2</amount>
        <closingBalance>sample string 5</closingBalance>
        <date>sample string 1</date>
        <debitOrCredit>sample string 4</debitOrCredit>
        <narration>sample string 3</narration>
        <transactionId>sample string 7</transactionId>
        <valueDate>sample string 6</valueDate>
      </dystementofacct>
      <dystementofacct>
        <amount>sample string 2</amount>
        <closingBalance>sample string 5</closingBalance>
        <date>sample string 1</date>
        <debitOrCredit>sample string 4</debitOrCredit>
        <narration>sample string 3</narration>
        <transactionId>sample string 7</transactionId>
        <valueDate>sample string 6</valueDate>
      </dystementofacct>
    </body>
    <header>
      <page_size>4</page_size>
      <page_start>1</page_start>
      <page_token>sample string 2</page_token>
      <status>sample string 5</status>
      <total_size>3</total_size>
    </header>
  </StatementOfAccountResponseObj>
</StatementOfAccountResponsedata>