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

# Validate Customer Transfer Request

> This endpoint allows you to validate a transfer request using the provided OTP.

# Validate Customer Transfer Request

Use this endpoint to validate a previously initiated transfer request by providing the OTP sent to the customer.

***

## Request Parameters

<ParamField header="requestId" type="string" required>
  A unique identifier for the request, used for idempotency.\
  **Example:** `e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9`
</ParamField>

<ParamField body="transactionId" type="string" required>
  The unique identifier for the transaction, returned after successfully initiating the transfer request.\
  **Example:** `txn_0011223344`
</ParamField>

<ParamField body="otpReferenceId" type="string" required>
  The reference ID for the OTP, returned after successfully initiating the transfer request.\
  **Example:** `otp_1234567890`
</ParamField>

<ParamField body="otp" type="string" required>
  The one-time password sent to the phone number associated with the source account.\
  **Example:** `123456`
</ParamField>

<ResponseExample>
  ```json
  {
  	"statusCode": 00,
  	"message": "Completed successfully"
  	"data": {
  		"amount": 1213211231,
  		"beneficiaryAccountName": "Peter Parker",
  		"beneficiaryAccountNumber": "1234567890",
  		"beneficiaryBankCode": "001001",
  		"transactionId": "txn_0011223344",
  		"narration": "Transfer to John Doe"
  	},
  	"errors": []
  }
  ```
</ResponseExample>
