Skip to main content
POST
/
gateway
/
create-domiciliary-bank-account-with-bvn
Create Domiciliary Account with BVN
curl --request POST \
  --url https://api.stag.songhaiexchange.io/gateway/create-domiciliary-bank-account-with-bvn \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dormAccountRequestDTO": [
    {
      "bvnCountry": "NGA",
      "existingAccountBankCode": 214,
      "existingAccountBvn": "02234444221",
      "existingAccountCurrencyCode": "USD",
      "newAccountCurrencyCode": "USD"
    }
  ]
}
'
{
  "dormAccountResponseDTO": [
    {
      "createdAccountNumber": "<string>",
      "existingBankAccountNumber": "<string>",
      "createdAccountCurrencyCode": "<string>",
      "status": "<string>",
      "msg_note": "<string>",
      "msg_code": "<string>",
      "msg_code_id": "<string>",
      "accountBankCode": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
dormAccountRequestDTO
object[]
required

Response

200 - application/json

Domiciliary account created successfully

dormAccountResponseDTO
object[]