Virtual account transaction history

Get transaction history for a virtual account.

Get transaction history for a virtual account

POST https://api-fsdh360-test.fsdhgroup.com/api/v1/virtualaccounts/static/history

To get a virtual account transaction history, the below parameters should be provided.

Attention should be given to parameters marked *required.

Query Parameters

Name
Type
Description

API-version

String

The version of API

Request Body

Name
Type
Description

Account number*

String

Clients account number

Start date*

String

Specify transaction history start date "2021-11-30T10:51:08.134Z"

End date *

String

Specify transaction history end date "2021-11-30T10:51:08.134Z"

Take

String

Number of records to return

Skip

String

Number of records to skip

[
  {
    "virtualAccountNumber": "string",
    "collectionAccountNumber": "string",
    "transactionType": "string",
    "transactionCurrencyCode": "string",
    "amount": 0,
    "narration": "string",
    "transactionDate": "2022-12-07T14:00:08.254Z",
    "counterPartyAccountNumber": "string",
    "counterPartyAccountName": "string"
  }
]
Request body
{
  "accountNumber": "string",
  "startDate": "2022-04-12T11:00:40.919Z",
  "endDate": "2022-04-12T11:00:40.919Z",
  "skip": 0,
  "take": 0
}
Curl
Server response

Response body

Inputting the correct parameters should give you a 200: Success response which will populate the below Success details. Also specified are possible responses from the request.

[
  {
    "virtualAccountNumber": "string",
    "collectionAccountNumber": "string",
    "transactionType": "string",
    "transactionCurrencyCode": "string",
    "amount": 0,
    "narration": "string",
    "transactionDate": "2022-11-30T13:30:55.406Z",
    "counterPartyAccountNumber": "string",
    "counterPartyAccountName": "string"
  }
]

Last updated