Assigned dynamic accounts

Get all assigned virtual dynamic FSDH 360 accounts

Get all assigned virtual dynamic FSDH 360 accounts

GET https://api-fsdh360-test.fsdhgroup.com/api/v1/virtualaccounts/dynamic/assigned

To complete this transaction the below Query Parameters should be provided

Query Parameters

Name
Type
Description

Skip

Int32

The number of records to skip

Take

Int32

The number of records to return

API - version

String

API version usually '1' or '2'

{
    "accountNumber": "string",
    "accountName": "string",
    "collectionAccountNumber": "string",
    "bvn": "string",
    "accountType": 1,
    "accountCurrency": "string",
    "hasExpired": true,
    "expires": "2022-05-31T07:56:42.855Z",
    "uniqueReference": "string",
    "isOneTimePaymentAccount": true,
  }
Curl and Request URL
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.

[
  {
    "accountNumber": "string",
    "accountName": "string",
    "collectionAccountNumber": "string",
    "bvn": "string",
    "accountType": 1,
    "accountCurrency": "string",
    "hasExpired": true,
    "expires": "2022-05-31T07:56:42.855Z",
    "uniqueReference": "string",
    "isOneTimePaymentAccount": true,
  },

  {
    "hasExpired": false,
    "expires": "2022-12-25T19:08:12+01:00",
    "uniqueReference": "",
    "isOneTimePaymentAccount": false,
    "accountNumber": "7000000094",
    "accountName": "string",
    "collectionAccountNumber": "string",
    "bvn": "string",
    "accountType": 1,
    "accountCurrency": "string"
  }
    ]

Last updated