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

# Reset a user's multi-factor enrollment



## OpenAPI

````yaml /api/partner-api/provisioning.json post /v1/msp/admin/users/{userId}/mfa/reset
openapi: 3.1.1
info:
  title: 'Cyrisma New Partner API: Provisioning'
  version: v1
servers:
  - url: https://{instance}.cyrisma.com/ta
    description: Tenant Authority, served under the partner's own CYRISMA instance host.
    variables:
      instance:
        default: ccnnnnnn
        description: The instance label of the tenant host issued to the partner.
security:
  - bearerAuth: []
tags:
  - name: Auth
  - name: MSP Administration
paths:
  /v1/msp/admin/users/{userId}/mfa/reset:
    post:
      tags:
        - MSP Administration
      summary: Reset a user's multi-factor enrollment
      operationId: ResetMspAdminUserMfaV1
      parameters:
        - name: userId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MspAdminMfaResetRequest'
        required: true
      responses:
        '204':
          description: No Content
components:
  schemas:
    MspAdminMfaResetRequest:
      required:
        - reason
      type: object
      properties:
        reason:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        A machine-client token from POST /v1/auth/client-token. Provisioning and
        user management need the pulse.write scope; reads need pulse.read.
      scheme: bearer
      bearerFormat: JWT

````