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

# Initiate payment

> Fund up to 50 orders for one investor.



## OpenAPI

````yaml /openapi.yaml post /api/payments/v1/
openapi: 3.0.3
info:
  title: MF Atlas API
  version: 1.0.0
servers:
  - description: Sandbox
    url: https://api-sandbox.mf-atlas.space
  - description: Production
    url: https://api.mf-atlas.space
security: []
paths:
  /api/payments/v1/:
    post:
      tags:
        - payments
      summary: Initiate payment
      description: Fund up to 50 orders for one investor.
      requestBody:
        content:
          application/json:
            schema:
              properties:
                bank_account_id:
                  type: string
                cheque:
                  type: object
                investment_account_id:
                  description: >-
                    Optional. If set, every linked order must belong to this
                    investment account.
                  type: string
                investor_id:
                  type: string
                mandate_id:
                  type: string
                mode:
                  description: MANDATE|CHEQUE|UPI|NETBANKING|NEFT_RTGS.
                  type: string
                order_ids:
                  description: Max 50, same investor, purchase/XSIP only.
                  type: array
                utr:
                  type: string
                vpa:
                  type: string
              type: object
        description: Payment
      responses:
        '201':
          content:
            application/json:
              schema:
                properties:
                  amount:
                    type: number
                  basket_id:
                    type: string
                  id:
                    type: string
                  payment_url:
                    type: string
                  status:
                    type: string
                type: object
          description: Initiated payment

````