Transactions deposit account

Transactions a deposit account

Request
path Parameters
accountId
required
string

account unique identifier associated with the deposit account in the Finzly's CRM system

query Parameters
page
required
string

Which number of page of results to be returned

Example: page=1
records
required
string <= 1000

Total number of records to be returned for a given page

Example: records=100
Request Body schema: application/json
required

Request for filter the data

postingFromDate
string

From posting date

postingToDate
string

To posting date

toAmount
number

To amount

fromAmount
number

From amount

type
string

Account type e.g credit, debit

Responses
200

OK

400

Bad request

401

You are not authorized to access the resource

403

Accessing the resource you were trying to reach is forbidden

404

The resource you were trying to reach is not found

500

Internal server error

503

Service unavailable

default

Successful

post/v1/bank/account/{accountId}/transactions
Request samples
application/json
{
  • "postingFromDate": "02/28/2024",
  • "postingToDate": "02/28/2024",
  • "toAmount": 100,
  • "fromAmount": 10,
  • "type": "credit"
}
Response samples
application/json
{
  • "depositTransaction": [
    ],
  • "pagination": "string"
}