# Wallet Funding Limit Validation

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/enKashCard/validate/wallet-load-limit:
    post:
      summary: Wallet Funding Limit Validation
      deprecated: false
      description: >-

        :::highlight purple 📌

        Lets you know if the amount you’re trying to add is within the allowed
        wallet top-up limits before you proceed.

        :::
      tags:
        - Wallet/APIs - Wallet/Wallet Management
      parameters:
        - name: partnerId
          in: header
          description: ''
          required: false
          example: CRM338L2H
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: false
          example: application/json
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: false
          example: Bearer KvuPCkTrj0E1d6g8lbM--4gEjoY
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                enKashCardId:
                  type: string
                  description: this will be your wallet id
                cardAccountId:
                  type: string
                  description: this will be your virtual account id
                amountToLoad:
                  type: string
                  description: this amout to be load
              required:
                - enKashCardId
                - cardAccountId
                - amountToLoad
              x-apidog-orders:
                - enKashCardId
                - cardAccountId
                - amountToLoad
            example:
              enKashCardId: EKCWLUAADN
              cardAccountId: CAC7975
              amountToLoad: '100'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  amountLoadAllowed:
                    type: boolean
                    description: Return true or false based wallet Limit
                required:
                  - amountLoadAllowed
                x-apidog-orders:
                  - amountLoadAllowed
              example:
                amountLoadAllowed: true
          headers: {}
          x-apidog-name: ''
      security:
        - bearer: []
      x-apidog-folder: Wallet/APIs - Wallet/Wallet Management
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-24477800-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
