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

# List MFA devices for the authenticated user

> List MFA devices for the authenticated user.



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json get /v1/self/mfa/
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: config
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: rules
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/self/mfa/:
    get:
      tags:
        - users
      summary: List MFA devices for the authenticated user
      description: List MFA devices for the authenticated user.
      operationId: get_v1_self_mfa
      parameters:
        - schema:
            type: number
            minimum: 1
            maximum: 50
          in: query
          name: take
          required: false
        - schema:
            type: number
            minimum: 0
          in: query
          name: skip
          required: false
        - schema:
            type: boolean
          in: query
          name: count_only
          required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - items
                          - count
                        properties:
                          items:
                            type: array
                            items:
                              type: object
                              required:
                                - id
                                - user_id
                                - name
                                - device_type
                                - confirmed_at
                                - last_used_at
                                - updated_at
                                - deleted_at
                              properties:
                                id:
                                  type: string
                                user_id:
                                  type: string
                                name:
                                  type: string
                                  minLength: 1
                                  maxLength: 64
                                device_type:
                                  anyOf:
                                    - type: string
                                      enum:
                                        - totp
                                confirmed_at:
                                  anyOf:
                                    - type: string
                                      format: date-time
                                    - type: 'null'
                                last_used_at:
                                  anyOf:
                                    - type: string
                                      format: date-time
                                    - type: 'null'
                                updated_at:
                                  type: string
                                  format: date-time
                                deleted_at:
                                  anyOf:
                                    - type: string
                                      format: date-time
                                    - type: 'null'
                          count:
                            type: integer
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````