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

> Returns a verification link; the consumer delivers it to the investor.



## OpenAPI

````yaml /openapi.yaml post /api/investors/v1/:id/ekyc
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/investors/v1/:id/ekyc:
    post:
      tags:
        - investors
      summary: Initiate eKYC
      description: Returns a verification link; the consumer delivers it to the investor.
      parameters:
        - description: ''
          in: path
          name: id
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                amc_code:
                  type: string
              type: object
        description: eKYC request
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                  verification_url:
                    type: string
                type: object
          description: Verification link

````