PUT
/
corporate
/
customers
/
{customerId}
/
documents
Update Corporate Customer Documents
curl --request PUT \
  --url https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}/documents \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "cac": "<string>",
  "tin": "<string>",
  "boardResolution": "<string>",
  "utilityBill": "<string>",
  "memart": "<string>",
  "scuml": "<string>"
}'
{
    "statuscode": "00",
    "message": "Customer successfully profiled",
    "data": {
      "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    }
    "errors": [],
}

Request Parameters

cac
string
The CAC (Certificate of Incorporation) document of the business. Example: base64-encoded-string
tin
string
The Tax Identification Number (TIN) document of the business. Example: base64-encoded-string
boardResolution
string
The Board Resolution document authorizing account or service usage. Example: base64-encoded-string
utilityBill
string
A recent utility bill serving as proof of address for the business. Example: base64-encoded-string
memart
string
The Memorandum and Articles of Association (MEMART) document of the business. Example: base64-encoded-string
scuml
string
The SCUML (Special Control Unit Against Money Laundering) certificate of the business. Example: base64-encoded-string
{
    "statuscode": "00",
    "message": "Customer successfully profiled",
    "data": {
      "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    }
    "errors": [],
}