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

# Make Payment

> This endpoint initiates the final payment of the the bill selected



## OpenAPI

````yaml POST /api/bill-payment/initiate-payment/{zeepay_id}
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/bill-payment/initiate-payment/{zeepay_id}:
    post:
      summary: Make Payment
      description: This endpoint initiates the final payment of the the bill selected
      parameters:
        - name: zeepay_id
          in: path
          required: true
          description: The Zeepay ID of the transaction.
          schema:
            type: string
            format: uuid
            example: f47ac10b-58cc-4372-a567-0e02b2c3d479
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                destination_account:
                  type: number
                  description: The mobile Network to top up
                  example: '233201854694'
                send_amount:
                  type: number
                  description: The amount sent
                  example: 1
                receive_amount:
                  type: number
                  description: The amount paid out
                  example: 1
              required:
                - destination_account
                - send_amount
                - receive_amount
      responses:
        '200':
          description: Transaction success response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  data:
                    type: string
                    example: null
                  message:
                    type: string
                    example: Transaction Processed Successfully
                  zeepay_id:
                    type: number
                    example: 26173
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````