> ## Documentation Index
> Fetch the complete documentation index at: https://developer.embedly.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Customer Name

> This endpoint is used to update a customer's name

<ParamField path="customerId" type="string" required />

<ParamField body="organizationId" type="string" />

<ParamField body="firstName" type="string">
  The first name of the individual. **Example:** `John`
</ParamField>

<ParamField body="lastName" type="string">
  The last name of the individual. **Example:** `Doe`
</ParamField>

<ParamField body="middleName" type="string">
  The middle name of the individual. **Example:** `Michael`
</ParamField>

<ParamField body="dob" type="string">
  The individual's date of birth in `YYYY-MM-DDTHH:MM:SS.000Z` format.
  **Example:** `2025-03-19T19:11:05.302Z`
</ParamField>

<ParamField body="city" type="string">
  The individual's residential city
</ParamField>

<ParamField body="address" type="string">
  The individual's residential address
</ParamField>

<ParamField body="occupation" type="string">
  The individual's occupation
</ParamField>

<ParamField body="gender" type="string">
  The individual's gender
</ParamField>

<ParamField body="bvnVerified" type="boolean" />

<ParamField body="ninVerified" type="boolean" />

<ParamField body="bvn" type="string">
  The individual's BVN. **Example:** `12345678901`
</ParamField>

<ParamField body="nin" type="string">
  The individual's NIN. **Example:** `23456789012`
</ParamField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "code": "00",
    "success": true,
    "message": "Updated Successfully",
    "data": null
  }
  ```
</ResponseExample>
