Transaction history

Get transaction history for a dynamic account

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

To get the transaction history for a dynamic account the below Parameters should be provided.

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 "2022-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-11-30T10:54:44.334Z",
    "counterPartyAccountNumber": "string",
    "counterPartyAccountName": "string"
  }
]
Curl
Server Response
Request URL
https://api-fsdh360.fsdhgroup.com/api/v1/virtualaccounts/dynamic/history?api-version=1
Request body
{
  "accountNumber": "string",
  "startDate": "2022-04-11T16:01:26.675Z",
  "endDate": "2022-04-11T16:01:26.675Z",
  "skip": 0,
  "take": 0
}

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-30T10:54:44.334Z",
    "counterPartyAccountNumber": "string",
    "counterPartyAccountName": "string"
  }
]

Last updated