GET
/
v1
/
dedicated_accounts
/
{id}
cURL
curl --request GET \
  --url https://api.paycashless.com/v1/dedicated_accounts/{id} \
  --header 'Request-Signature: <request-signature>' \
  --header 'Request-Timestamp: <request-timestamp>'
{
  "id": "<string>",
  "accountRequestCode": "<string>",
  "customerId": "<string>",
  "currency": "NGN",
  "accountNumber": "<string>",
  "accountName": "<string>",
  "bankName": "<string>",
  "bankId": "<string>",
  "acceptedAmountPolicy": "ACCEPTED_AMOUNT_POLICY_FIXED",
  "status": "active",
  "type": "temporary_virtual_account",
  "liveMode": true,
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "bank": {
    "id": "<string>",
    "name": "<string>",
    "cbnCode": "<string>",
    "nibssCode": "<string>"
  }
}

Headers

Request-Signature
string
required

SHA-512 HMAC signature of the request payload using the API secret

Minimum length: 1
Example:

"5e73d044c44d733fcf819ad3409aaaddca840d421b69cb0b04e2c750fc62ece7526d36296237663ad1f06f62a730c0466516507196b3ce6567493cc52a7cf63d"

Request-Timestamp
string
required

UNIX timestamp when the request was created (in seconds)

Example:

"1712336881"

Path Parameters

id
string
required
Example:

"va_ff0c3z37zi40pvc82g74bgsm4q7fubbw"

Response

200 - application/json

Dedicated account retrieved

The response is of type object.