PATCH
/
customers
/
customer
/
{customerId}
/
updatename
Update Customer Name
curl --request PATCH \
  --url https://waas-staging.embedly.ng/api/v1/customers/customer/{customerId}/updatename \
  --header 'Content-Type: application/json' \
  --data '{
  "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>"
}'
{}
customerId
string
required
organizationId
string
firstName
string
The first name of the individual. Example: John
lastName
string
The last name of the individual. Example: Doe
middleName
string
The middle name of the individual. Example: Michael
dob
string
The individual’s date of birth in YYYY-MM-DDTHH:MM:SS.000Z format. Example: 2025-03-19T19:11:05.302Z
city
string
The individual’s residential city
address
string
The individual’s residential address
occupation
string
The individual’s occupation
gender
string
The individual’s gender
bvnVerified
boolean
ninVerified
boolean
bvn
string
The individual’s BVN. Example: 12345678901
nin
string
The individual’s NIN. Example: 23456789012
{}