# Resend OTP

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /pay/resend/otp/{enkashTransactionId}:
    get:
      summary: Resend OTP
      deprecated: false
      description: >-
        :::highlight purple 📌

        Use this API to resend a One-Time Password (OTP) to the user’s
        registered mobile number or email. This is useful when the original OTP
        was not received, expired, or entered incorrectly, ensuring the user can
        complete verification securely.

        :::
      tags:
        - Payment Gateway/APIs - Payment Gateway /Payment
      parameters:
        - name: enkashTransactionId
          in: path
          description: The unique identifier for the transaction
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            '*/*':
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Payment Gateway/APIs - Payment Gateway /Payment
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-10664811-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
