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

# Confirm mandate

> Registers the proposed mandate — the normal mandate-creation flow, gated by the public link instead of a bearer token. The response's auth_link (ENACH only) is where the investor should be redirected to approve the debit with their bank.



## OpenAPI

````yaml /openapi.yaml post /api/public/v1/mandate-links/{link_id}/confirm
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/public/v1/mandate-links/{link_id}/confirm:
    post:
      tags:
        - public-mandates
      summary: Confirm mandate
      description: >-
        Registers the proposed mandate — the normal mandate-creation flow, gated
        by the public link instead of a bearer token. The response's auth_link
        (ENACH only) is where the investor should be redirected to approve the
        debit with their bank.
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  auth_link:
                    type: string
                  id:
                    type: string
                  provider_mandate_id:
                    type: string
                  remark:
                    type: string
                  simulation_links:
                    type: object
                  status:
                    type: string
                  umrn:
                    type: string
                type: object
          description: Registered mandate
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque bearer token from POST /api/auth/v1/token
      scheme: bearer
      type: http

````