githubEdit

post__mfa_organization_enforce

POST /mfa/organization/enforce

Enforce Organization MFA Policy

Update the multi-factor authentication enforcement policy for the organization. This endpoint allows administrators to require MFA for all organization members.

TypeScript Client Library

// Note: This endpoint doesn't have a direct client method in the provided TypeScript client
// You would need to use the generic makeRequest method:
// this.makeRequest<any>('mfa/organization/enforce', 'POST', { enforced: true });

Code Samples

# You can also use wget
curl -X POST https://backend.flashback.tech/mfa/organization/enforce \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}' \
  -d '{
    "enforced": true
  }'

Request Body

Name
Type
Required
Description

enforced

boolean

true

Whether MFA should be enforced for the organization

Body parameter

Example responses

200 Response

400 Response

500 Response

Responses

Status
Meaning
Description
Schema

200

MFA enforcement updated successfully

Inline

400

Invalid request parameters

Inline

500

Internal server error

Inline

Response Schema

Status Code 200

Name
Type
Required
Restrictions
Description

» success

boolean

false

none

Indicates if the request was successful

» message

string

false

none

Success message confirming the policy update

Status Code 400

Name
Type
Required
Restrictions
Description

» success

boolean

false

none

Indicates if the request was successful

» error

string

false

none

Error message describing the validation issue

Status Code 500

Name
Type
Required
Restrictions
Description

» success

boolean

false

none

Indicates if the request was successful

» error

string

false

none

Error message describing the issue

Last updated

Was this helpful?