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

# Generate order confirmation link

> Generates a public URL an investor can use to review, confirm and pay for a proposed order — no order is created until the investor confirms.



## OpenAPI

````yaml /openapi.yaml post /api/orders/v1/public-link
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:
  - bearerAuth: []
paths:
  /api/orders/v1/public-link:
    post:
      tags:
        - orders
      summary: Generate order confirmation link
      description: >-
        Generates a public URL an investor can use to review, confirm and pay
        for a proposed order — no order is created until the investor confirms.
      requestBody:
        content:
          application/json:
            schema:
              properties:
                proposal:
                  type: object
              type: object
        description: Order proposal + link properties
      responses:
        '201':
          content:
            application/json:
              schema:
                properties:
                  link_id:
                    type: string
                  url:
                    type: string
                type: object
          description: Link details
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque bearer token from POST /api/auth/v1/token
      scheme: bearer
      type: http

````