Skip to main content
POST
/
api
/
v1
/
auth
/
mfa
/
enroll
/
confirm
cURL
curl -sS -X POST "$FLUIDE_BASE_URL/api/v1/auth/mfa/enroll/confirm" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "success": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

Access token JWT. Use as Authorization: Bearer . In the API playground, paste the JWT only.

Body

application/json
enrollmentId
string
required

Enrollment id returned by POST /auth/mfa/enroll/begin

code
string
required

6-digit TOTP code from authenticator app

Pattern: /^\d{6}$/

Response