> ## 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 Bank Account

> Initiates a bank account credit transaction

## Step 2: Credit the Bank Account

After retrieving the list of supported banks, use this endpoint to initiate a credit transaction to a specific bank account.\
You’ll need the bank code obtained from the previous step, along with the account details and amount to complete the transfer.


## OpenAPI

````yaml POST /api/custom/transactions/tech-maxx/credits/banks
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/credits/banks:
    post:
      summary: Credit bank account
      description: Initiates a bank account credit transaction
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                customerName:
                  type: string
                  description: The receiver's name
                  example: Internal QA
                bank_code:
                  type: string
                  example: '300323'
                  description: The bank code/ routing number
                amount:
                  type: number
                  example: 1
                  description: The amount to credit the bank account
                accountNumber:
                  type: string
                  example: '2030160608116'
                  description: The bank account number
                description:
                  type: string
                  description: The description of the transaction
                  example: Test Zeepay Bank 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
                - bank_code
                - amount
                - reference
                - accountNumber
                - description
      responses:
        '200':
          description: Transaction success response
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    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
        '400':
          description: Invalid input or parameters
        '401':
          description: Unauthorized or missing token
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````