# Generate OTP

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/enKashCard/otp:
    post:
      summary: Generate OTP
      deprecated: false
      description: >-

        :::highlight purple 📌

        This API sends a one-time password (OTP) to verify your identity before
        sensitive card actions, such as setting or changing a PIN, freezing a
        card, or approving transactions.

        :::
      operationId: generateOtp
      tags:
        - Prepaid Cards/APIs - Prepaid Card/Non Reloadable Gift Cards
      parameters:
        - name: authorization
          in: header
          description: >-
            Provide your bearer token in the Authorization header when making
            requests to protected resources.
          required: true
          example: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379
          schema:
            type: string
        - name: partnerId
          in: header
          description: PartnerID shared during sign-up
          required: true
          example: ' CRXXXXXXX'
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: string
            example: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: string
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Prepaid Cards/APIs - Prepaid Card/Non Reloadable Gift Cards
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-26006246-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
