> ## 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.

# Credit Mobile Wallet

> This endpoint handles payouts to mobile wallets



## OpenAPI

````yaml POST /api/instntmny-local/transactions/wallets/credit-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/instntmny-local/transactions/wallets/credit-wallet:
    post:
      description: This endpoint handles payouts to 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'
              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 sent
                  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

````