Skip to main content

Setup MFA for user


ApiScope: manage.mfa.write
API Scope Level: ServiceSubscriberScope
Path Parameters
    userUUID string required
Request Body required
    secretKey string
    token string
Responses

OK


Schema
    statusCode int32
    errors object[]
  • Array [
  • errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
POST /v2/verification/users/:userUUID/mfa

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
userUUID — path required
Body required
{
"secretKey": "string",
"token": "string"
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/verification/users/:userUUID/mfa' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"secretKey": "string",
"token": "string"
}'