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

# Create Business Customer

> This endpoint enables you to create a business customer after successful KYB verification.

# Create Business Customer

<ParamField body="businessId" type="string" required>
  **Example:** "3fa85f64-5717-4562-b3fc-2c963f66afa6"
</ParamField>

<ParamField body="orgId" type="string" required>
  **Example:** "3fa85f64-5717-4562-b3fc-2c963f66afa6"
</ParamField>

<ParamField body="firstName" type="string" required>
  **Example:** `John`
</ParamField>

<ParamField body="lastName" type="string" required>
  **Example:** `mark`
</ParamField>

<ParamField body="phoneNumber" type="string" required />

<ParamField body="gender" type="string" required />

<ParamField body="email" type="string" required>
  The business email. **Example:** [user@example.com](mailto:user@example.com)
</ParamField>

<ParamField body="dateOfBirth" type="string" required>
  date of birth in `YYYY-MM-DD` format. **Example:** `2025-03-21`
</ParamField>

<ParamField body="nin" type="string" required />

<ParamField body="bvn" type="string" required />

<ParamField body="country" type="string" required />

<ParamField body="state" type="string" required />

<ParamField body="lga" type="string" required />

<ParamField body="streetAddress" type="string" required />

<ResponseExample>
  ```json Success theme={null}
  {
  	"data": {
  		"customerId": "8e9051f5-4f0a-4ece-99b6-19d8d52b9479",
  		"message": "Customer created successfully!",
  		"status": true
  	},
  	"statusCode": 200,
  	"message": "Request successful"
  }
  ```

  ```json Bad Request theme={null}
  {
  	"data": {},
  	"statusCode": 400,
  	"message": "Customer with this email already exist!"
  }
  ```

  ```json Unauthorized theme={null}
  {
  	"statusCode": 401,
  	"message": "No Authentication found!",
  	"error": "Unauthorized"
  }
  ```
</ResponseExample>
