PATCH
/
customers
/
customer
/
{customerId}
/
updatename
curl --request PATCH \
  --url https://waas-staging.cafeone.ng/api/v1/customers/customer/{customerId}/updatename \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "customerId": "<string>",
  "organizationId": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "middleName": "<string>",
  "dob": "<string>",
  "city": "<string>",
  "address": "<string>",
  "occupation": "<string>",
  "gender": "<string>",
  "bvnVerified": true,
  "ninVerified": true,
  "bvn": "<string>",
  "nin": "<string>"
}'
{}

Query Parameter

customerId
string
required

Request Parameters

organizationId
string
firstName
string
required

The first name of the individual. Example: John

lastName
string
required

The last name of the individual. Example: Doe

middleName
string
required

The middle name of the individual. Example: Michael

dob
string
required

The individual’s date of birth in YYYY-MM-DDTHH:MM:SS.000Z format. Example: 2025-03-19T19:11:05.302Z

city
string
required

The individual’s residential city

address
string
required

The individual’s residential address

occupation
string
required

The individual’s occupation

gender
string
required

The individual’s gender

bvnVerified
boolean
required
ninVerified
boolean
required
bvn
string
required

The individual’s BVN. Example: 12345678901

nin
string
required

The individual’s NIN. Example: 23456789012

{}