Skip to main content
POST
/
corporate
/
customers
/
{customerId}
/
wallets
Create Corporate Customer Wallet
curl --request POST \
  --url https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}/wallets \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "currencyId": "<string>",
  "name": "<string>"
}
'
{
  "code": "00",
  "success": true,
  "message": "Created Successfully",
  "data": {
    "id": "a6d754bb-a7af-11f0-8d44-4af84d9ff6f1",
    "currencyId": "12345f0c-24fa-410c-b66c-1hhec56e5cd8",
    "customerId": "037be221-6a1e-458c-aa50-c2ff06136b83",
    "name": "Chow/Chow's Business - Chow's first",
    "walletGroupId": null,
    "customerTypeId": "23g77cf6-f355-4536-ae96-adf24682809f",
    "virtualAccount": {
      "accountNumber": "9710123456",
      "bankCode": "232",
      "bankName": "Sterling Bank"
    }
  }
}

Request Parameters

customerId
string
required
Thr uniqe identifier of the corporate customer to whom the director is to be added. Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
currencyId
string
required
The unique identifier of the currency. Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
name
string
required
The name of the currency. Example: Nigerian Naira
{
  "code": "00",
  "success": true,
  "message": "Created Successfully",
  "data": {
    "id": "a6d754bb-a7af-11f0-8d44-4af84d9ff6f1",
    "currencyId": "12345f0c-24fa-410c-b66c-1hhec56e5cd8",
    "customerId": "037be221-6a1e-458c-aa50-c2ff06136b83",
    "name": "Chow/Chow's Business - Chow's first",
    "walletGroupId": null,
    "customerTypeId": "23g77cf6-f355-4536-ae96-adf24682809f",
    "virtualAccount": {
      "accountNumber": "9710123456",
      "bankCode": "232",
      "bankName": "Sterling Bank"
    }
  }
}