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

# Corporate Account

> This endpoint is used to create corporate accounts in favour of your business customers.

# Create Corporate Account

Use this endpoint to create corporate accounts for your business customers. These accounts are virtual and tied to your customers for seamless transactions and account management.

***

## Request Parameters

<ParamField header="requestId" type="string" required>
  A unique identifier for the request, used for idempotency. This ensures that repeated requests with the same "requestId" are not processed multiple times.
  **Example:** `e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9`
</ParamField>

<ParamField body="customerId" type="string" required>
  The unique identifier for the customer on the Edge platform. This ID is used to reference a specific customer in the request body.
  **Example:** `CUS1234567890`
</ParamField>

***

<ResponseExample>
  ```json
  {
  	"statusCode": 00,
  	"message": "Account successfully created",
  	"data": {
  		"accountNumber": "1951145523",
  		"accountName": "Stark Industries"
  	},
  	"errors": []
  }
  ```
</ResponseExample>
