Generate Account Statement

This returns account statement of a customer

circle-exclamation

To generate a customer's statement of account you have to first build the complete request url by passing accountNumber, fromDate, toDate, isPdf, arrangeAsc, showSerialNumber, showTransactionDate, showReversedTransactions, showInstrumentNumber params to the generate statement of account endpoint.

Then you make a get request to your complete endpoint.

circle-info

We have a Production URL and Staging URL you are advised to use the staging during development.

Production URL

http://api.mybankone.com/BankOneWebAPI/api/Account/GenerateAccountStatement2?accountNumber={{account_number}}&fromDate={{date}}&toDate={{date}}&isPdf=true&arrangeAsc=true&showSerialNumber=true&showTransactionDate=false&showReversedTransactions=false&showInstrumentNumber=falsearrow-up-right

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Account/GenerateAccountStatement2?accountNumber={{account_number}}&fromDate={{date}}&toDate={{date}}&isPdf=true&arrangeAsc=true&showSerialNumber=true&showTransactionDate=false&showReversedTransactions=false&showInstrumentNumber=falsearrow-up-right

Here is an example request with sample payload to the staging endpoint.

GET http://staging.mybankone.com/BankOneWebAPI/api/Account/GenerateAccountStatement2

Query Parameters

Name
Type
Description

accountNumber*

Int

Customer's account number

fromDate*

Date

Date you want to you want the statement of account to start from

toDate*

Date

Date you want the statement of account to end

isPdf*

Boolean

Checks if you want your response in pdf format

arrangeAsc

Boolean

Checks if you want the response in ascending order

showSerialNumber

Boolean

Checks if you want to to show serial number in the response

showTransactionDate

Boolean

Checks if you want to show transaction date in the response

showReversedTransactions

Boolean

Checks if you want to show reversed transactions in the response

showInstrumentNumber

Boolean

Checks if you want to show instrument number

Last updated