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

# Debit Mobile Wallet

> This endpoint handles debits from mobile wallets

<Note>
  Call to debit a mobile wallet. Please note that a successful call to this route will trigger a USSD prompt to the user to approve / authorize the transaction.
</Note>


## OpenAPI

````yaml POST /api/custom/transactions/tech-maxx/wallets/debit-wallet
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://test.digitaltermination.com
  - url: https://business-sandbox.instntmny.com
security: []
paths:
  /api/custom/transactions/tech-maxx/wallets/debit-wallet:
    post:
      description: This endpoint handles debits from mobile wallets
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                customerName:
                  type: string
                  description: The receiver's name
                  example: Eugene Osei
                mno:
                  type: string
                  description: The mobile service provider
                  example: Zeepay
                amount:
                  type: number
                  description: The amount to credit the mobile wallet
                  example: '1'
                msisdn:
                  type: number
                  description: The receiver mobile number
                  example: '233201854694'
                description:
                  type: string
                  description: The description of the transaction
                  example: Zeepay Test Wallet Credit
                reference:
                  type: string
                  description: Transaction reference
                  example: '23453452'
                callback_url:
                  type: string
                  description: The callback URL (optional)
                  example: https://your-domain.com/webhook/payment-status
              required:
                - customerName
                - mno
                - amount
                - msisdn
                - description
                - reference
      responses:
        '200':
          description: Successfully processed the payout request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: number
                    example: 411
                    description: Static response code indicating the status
                  zeepay_id:
                    type: integer
                    example: 123456
                    description: The Zeepay ID of the transaction
                  amount:
                    type: number
                    example: '1'
                    description: The amount to debit the mobile wallet
                  message:
                    type: string
                    example: Pending Gateway Response
                    description: This is a response message from the third party
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````