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

# Create Withdrawal Request

> Creates a withdrawal request.

<ParamField body="bank_code" type="string" required>
  The bank code
</ParamField>

<ParamField body="bank_name" type="string" required>
  The name of the bank
</ParamField>

<ParamField body="account_number" type="string" required>
  The account number for the withdrawal
</ParamField>

<ParamField body="account_name" type="string" required>
  The account holder's name
</ParamField>

<ParamField body="amount" type="number" required>
  The withdrawal amount
</ParamField>

<ParamField body="currency" type="string" required>
  The currency for the withdrawal. Supported currencies include:

  * NGN
  * USD
  * KES
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Loan repayment withdrawal request created successfully"
  }
  ```
</ResponseExample>
