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>"
}'
{
    "statuscode": "00",
    "message": "Customer successfully profiled",
    "data": {
      "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    }
    "errors": [],
}

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
{
    "statuscode": "00",
    "message": "Customer successfully profiled",
    "data": {
      "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    }
    "errors": [],
}