# Order Physical Card

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/enKashCard/physicalCard:
    post:
      summary: Order Physical Card
      deprecated: false
      description: >-

        :::highlight purple 📌

        This API is used to generate and manage physical prepaid cards. It
        processes requests for issuing new physical cards and provides the
        necessary details for card creation and delivery

        :::
      operationId: physicalCard
      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: object
              x-apidog-refs: {}
              x-apidog-orders:
                - cardAccountId
                - enKashCardId
                - address
                - address2
                - city
                - state
                - country
                - pincode
                - otpRequestId
                - otp
                - otpRequired
                - otpMedium
                - mfaCode
              properties:
                cardAccountId:
                  type: string
                  description: Card Account Id
                enKashCardId:
                  type: string
                  description: 'Enkash Card Id '
                address:
                  type: string
                  description: Address of card holder
                address2:
                  type: string
                  description: Address 2 of card holder
                city:
                  type: string
                  description: City of card holder residence
                state:
                  type: string
                  description: State of card holder residence
                country:
                  type: string
                  description: Country of card holder
                pincode:
                  type: string
                  description: Pin Code of the residence
                otpRequestId:
                  type: string
                  description: Unique OTP request Id
                otp:
                  type: string
                otpRequired:
                  type: boolean
                  description: if OTP is required or not. - to be passed as false
                  x-apidog-mock: 'false'
                otpMedium:
                  type: string
                  enum:
                    - MOBILE
                    - MFA
                  description: MOBILE
                mfaCode:
                  type: string
              required:
                - address
                - address2
                - cardAccountId
                - city
                - enKashCardId
                - pincode
                - state
                - country
                - otpRequired
            example: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  payload:
                    type: string
                required:
                  - code
                  - message
                  - payload
                x-apidog-orders:
                  - code
                  - message
                  - payload
              example:
                code: 0
                message: Success
                payload: Success
          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-26006272-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
