> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sudo.africa/llms.txt
> Use this file to discover all available pages before exploring further.

# Balance Enquiry

> Simulates card enquiry for a specific card.



## OpenAPI

````yaml openapi.json post /cards/simulator/balance_enqiry
openapi: 3.1.0
info:
  title: Sudo Sandbox API
  version: '1.0'
servers:
  - url: https://api.sandbox.sudo.cards
security:
  - sec0: []
paths:
  /cards/simulator/balance_enqiry:
    post:
      summary: Balance Enquiry
      description: Simulates card enquiry for a specific card.
      operationId: balance-enquiry
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - cardId
                - channel
              properties:
                cardId:
                  type: string
                  description: The `_id` of the specific card.
                channel:
                  type: string
                  description: The channel to simulate the balance enquiry on.
                  default: web
                  enum:
                    - web
                    - pos
                    - atm
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      x-default: '{{APIKey}}'

````