> ## 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

> This endpoint enables you to create a business under your organization on the Embdedd Finance platform.

# Create Business

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

<ParamField body="title" type="string" required>
  Contact person's title, **Example:** `Mr`
</ParamField>

<ParamField body="firstName" type="string" required>
  Contact person's first name, **Example:** `John`
</ParamField>

<ParamField body="lastName" type="string" required>
  Contact person's last name, **Example:** `Mark`
</ParamField>

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

<ParamField body="businessName" type="string" required>
  Business' legal name, **Example:** `Embedded Finance`
</ParamField>

<ParamField body="email" type="string" required>
  The business' email. **Example:** `user@example.com`
</ParamField>

<ParamField body="phoneNumber" type="string" required>
  The business' phone number, **Example:** \`\`
</ParamField>

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

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

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

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

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

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

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

<ParamField body="businessType" type="string" required>
  **Example:** `Sole Proprietorship`
</ParamField>

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

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

<ParamField body="dateOfIncorporation" type="string" required>
  **Example:** `2025-03-21`
</ParamField>

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

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

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

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

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

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

<ResponseExample>
  ```json Success theme={null}
  {
  	"data": {
  		"businessCreated": true,
  		"businessId": "32c1a8f6-cbda-4d35-929f-99ccec85d9c8"
  	},
  	"statusCode": 200,
  	"message": "Business created successfully!"
  }
  ```

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