GET
/
organizations
/
{organizationId}
/
mfaSettings
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/organizations/{organizationId}/mfaSettings \
  --header 'Authorization: Bearer <token>'
{
  "mfaSettings": [
    {
      "enabledAt": "2023-11-07T05:31:56Z",
      "mfaDeviceType": "totp"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

ID of organization

Required string length: 36

Response

200
application/json
List of mfa settings for the organization
mfaSettings
object[]