POST
/
corporate
/
customers
Create Corporate Customer
curl --request POST \
  --url https://waas-staging.embedly.ng/api/v1/corporate/customers \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "rcNumber": "<string>",
  "tin": "<string>",
  "fullBusinessName": "<string>",
  "businessAddress": "<string>",
  "countryId": "<string>",
  "city": "<string>",
  "email": "<string>",
  "walletPreferredName": "<string>"
}'
{
    "statuscode": "00",
    "message": "Customer successfully profiled",
    "data": {
      "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    }
    "errors": [],
}

Request Parameters

rcNumber
string
required
The RC number of the business. Example: 123456
tin
string
required
The Tax Identification Number (TIN) of the business. Example: 01234567-0001
fullBusinessName
string
required
The registered full business name. Example: Acme Technologies Limited
businessAddress
string
required
The physical address of the business. Example: 12 Adeola Odeku Street, Victoria Island, Lagos
countryId
string
required
The unique identifier of the country. Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
city
string
required
The city where the business is located. Example: Lagos
email
string
required
The official business email address. Example: user@example.com
walletPreferredName
string
required
The preferred display name for the business wallet. Example: AcmeWallet
{
    "statuscode": "00",
    "message": "Customer successfully profiled",
    "data": {
      "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    }
    "errors": [],
}