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

# Enable Account MFA

> Initiate account MFA enrollment.



## OpenAPI

````yaml post /mfa
openapi: 3.0.3
info:
  title: GetPartna Api Documentation
  version: '3.0'
servers:
  - url: https://staging-api.getpartna.com/v4
  - url: https://api.getpartna.com/v4
security:
  - x-api-key: []
    x-api-user: []
  - authorization: []
tags:
  - description: user endpoints
    name: User
  - description: account endpoints
    name: Account
  - description: transfer endpoints
    name: Transfer
  - description: supported assets and networks
    name: Supported
  - description: discount endpoints
    name: Discount
  - description: rate endpoints
    name: Rate
  - description: KYC endpoints
    name: KYC
  - description: Multi-Factor Authentication endpoints
    name: MFA
  - description: ramp endpoints
    name: Ramp
  - description: pricing endpoints
    name: Pricing
  - description: banks
    name: Bank
  - description: mock endpoints for testing
    name: Mock
paths:
  /mfa:
    post:
      tags:
        - MFA
      summary: Enable Account MFA
      description: Initiate account MFA enrollment.
      operationId: post-mfa
      responses:
        '200':
          content:
            application/json:
              schema:
                example:
                  data:
                    qrCode: >-
                      data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHEAAABxAQMAAADYsN6TAAAABlBMVEX///8AAABVwtN+AAABtElEQVR42sTUMapmOwgH8EBawa0IaQW3LqQV3IpgK/i459438J1x2hm7X5No8sf1z6vLCHIlL28drIC3rG2jrclu4nCB+1rN7q8Dmw/8wQmAzWfNVohzAK8DrMld9lO/+v/wWrWuIZ/6f+JPqyumNKR26OQFJxcyAcQajObg2rThwuTeXsm07WzTweGm1Vdu2NPR2zvOlot8gXPycUBEqFUFk2k3FUeK3Oe+t7k5iEqiy9dgIUNOAS1OHdyAW1EUEXgyBqWYns70yVqIIcZZWpPtrrIsOcbPe7+Nfet6+ba2ya7BzHhAdXRbOYHzdfvOz8uhymwAifrE6W3tPBvLwzom32tsfOgq8uQNGulOUT2aTxCv7GWok8PskG28WKPhEm4XW8Q2mRu95SjalsmuqhSWknYnL8jUiFNEMll3MDBTFzwNv71xKx9EV3vy+nZu97hXAtInk3TIodry/Z9vyyaj2CerQQcXGrm03OqavFajFliC/myMT3fpwbIOMJusQIyFVKk+2e2ida/2733zu3du/5qGaY1GdUZZkjBZYS1lTpGNk7+mtCpJvVcH/936LwAA//9xl5M1Qm7l5gAAAABJRU5ErkJggg==
                    recoveryPhrases:
                      - c5d61a-2e7f25
                      - 04f71d-fc0a2d
                      - a444ec-8cfcbe
                      - c890ba-571318
                      - 4693e1-73ab19
                      - df621e-7052df
                      - 41eea9-61e7a1
                      - 562827-2712d3
                      - 154ce0-39b4ce
                      - 4b4b6d-f629a5
                    secret: 47G3S4DZLCEMWAZGF23DEVBILOHCIKOT
                  message: success
                properties:
                  data:
                    properties:
                      qrCode:
                        type: string
                      recoveryPhrases:
                        items:
                          type: string
                        type: array
                      secret:
                        type: string
                    type: object
                  message:
                    type: string
                type: object
          description: post mfa ok
        '401':
          content:
            application/json:
              schema:
                example:
                  message: unable to access this resource
                properties:
                  message:
                    type: string
                type: object
          description: post mfa unauthorized
        '404':
          content:
            application/json:
              schema:
                example:
                  message: account not found
                properties:
                  message:
                    type: string
                type: object
          description: post mfa not found
      security:
        - x-api-key: []
          x-api-user: []
        - authorization: []
components:
  securitySchemes:
    x-api-key:
      in: header
      name: x-api-key
      type: apiKey
    x-api-user:
      in: header
      name: x-api-user
      type: apiKey
    authorization:
      bearerFormat: JWT
      scheme: bearer
      type: http

````