POST
/
v1
/
dedicated_accounts
cURL
curl --request POST \
  --url https://api.paycashless.com/v1/dedicated_accounts \
  --header 'Content-Type: application/json' \
  --header 'Request-Signature: <request-signature>' \
  --header 'Request-Timestamp: <request-timestamp>' \
  --data '{
  "callbackUrl": "<string>",
  "currency": "NGN",
  "accountType": "individual",
  "accountName": "<string>",
  "email": "[email protected]",
  "preferredBank": "safehaven_mfb",
  "kycProfile": {
    "firstName": "<string>",
    "lastName": "<string>",
    "otherName": "<string>",
    "gender": "male",
    "countryOfOrigin": "AF",
    "phoneNumber": "<string>",
    "dateOfBirth": "<string>",
    "bankAccountNumber": "<string>",
    "bankId": "<string>",
    "identities": [
      {
        "type": "bvn",
        "number": "<string>"
      }
    ]
  }
}'
{
  "status": "awaiting_customer_consent",
  "accountRequestCode": "<string>",
  "message": "<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"

Body

application/json

Response

202
application/json

Account creation request accepted

The response is of type object.