Skip to main content
PUT
/
v0
/
organizations
/
{organization_id}
/
mfa-settings
curl --request PUT \
  --url 'https://api.unify.ai/v0/organizations/<organization_id>/mfa-settings' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "require_mfa": "boolean"
}
Update MFA enforcement settings for an organization. Requires org:write permission (Owner, Admin roles).

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization_id
integer
required

Body

require_mfa
boolean
required
Whether to require MFA for all members.
curl --request PUT \
  --url 'https://api.unify.ai/v0/organizations/<organization_id>/mfa-settings' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "require_mfa": "boolean"
}