Update MFA settings
curl --request POST \
--url https://api2.rhombussystems.com/api/org/updateMFASettings \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"mfaEnabled": true,
"v3AuthNumDaysSkip2FAForTrustedDevices": 30
}
'import requests
url = "https://api2.rhombussystems.com/api/org/updateMFASettings"
payload = {
"mfaEnabled": True,
"v3AuthNumDaysSkip2FAForTrustedDevices": 30
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({mfaEnabled: true, v3AuthNumDaysSkip2FAForTrustedDevices: 30})
};
fetch('https://api2.rhombussystems.com/api/org/updateMFASettings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/org/updateMFASettings")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"mfaEnabled\": true,\n \"v3AuthNumDaysSkip2FAForTrustedDevices\": 30\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"org": {
"accountBillingContactEmail": "<string>",
"accountOwnerEmail": "<string>",
"accountTechnicalContactEmail": "<string>",
"accountTechnicalContacts": [
"<string>"
],
"address1": "<string>",
"address2": "<string>",
"allowedLoginIpRanges": [
"<string>"
],
"applyMobileSessionLimit": true,
"audioAnalysisEnabled": true,
"audioRecordingEnabled": true,
"bandwidthReportsDisabled": true,
"companyLogoUrl": "<string>",
"companyLogoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"connectivityBatchWindowSecs": 123,
"countryCode": "<string>",
"createdAtMillis": 123,
"criticalStatusEnabled": true,
"defaultPlayerViewLiveType": "REALTIME",
"deleted": true,
"deletedAtMillis": 123,
"developmentPartnerOrg": true,
"firmwareUpdateSettings": {
"intervalsV2": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mode": "MANUAL"
},
"firmwareUpdateSettingsOverrides": [
{
"deviceTypes": [
"BLE_TRACKER"
],
"firmwareUpdateSettings": {
"intervalsV2": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mode": "MANUAL"
}
}
],
"inactivityTimeout": 123,
"itemizedInvoice": true,
"keypadLogoUrl": "<string>",
"keypadLogoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"llmUsageEnabled": true,
"maxAllowedSegmentMaxBytesMap": {},
"mfaEnabled": true,
"mobileSessionLimitInDays": 123,
"motionGridDisabled": true,
"motionLightweightDisabled": true,
"name": "<string>",
"newCameraFramerateMap": {},
"newCameraResolutionMap": {},
"newCameraSegmentMaxBytesMap": {},
"newCameraVideoTargetQualityMap": {},
"newCameraZeroMotionVideoQualityMap": {},
"notifyForHardwareFailureTickets": true,
"paneLinks": [
{
"description": "<string>",
"label": "<string>",
"paneId": "<string>",
"permissionGroupUuids": [
"<string>"
],
"userUuids": [
"<string>"
]
}
],
"partnerAccessAllowedUntil": 123,
"postalCode": "<string>",
"rhombusKeyLogoUrl": "<string>",
"rhombusKeyLogoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"salesforceAccountId": "<string>",
"shareAiTrainingMediaWithRhombus": true,
"subscriptionEndDate": 123,
"subscriptionStatus": "TRIAL",
"subscriptionType": "STARTER",
"supportAccessAllowedUntil": 123,
"tenantUrl": "<string>",
"thumbstripDisabled": true,
"type": "PARTNER",
"uapSettings": {
"enabled": true,
"text": "<string>"
},
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"v3AuthNumDaysSkip2FAForTrustedDevices": 123
},
"warningMsg": "<string>"
}Org Webservice
Update MFA settings
Update organization MFA settings
POST
/
api
/
org
/
updateMFASettings
Update MFA settings
curl --request POST \
--url https://api2.rhombussystems.com/api/org/updateMFASettings \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"mfaEnabled": true,
"v3AuthNumDaysSkip2FAForTrustedDevices": 30
}
'import requests
url = "https://api2.rhombussystems.com/api/org/updateMFASettings"
payload = {
"mfaEnabled": True,
"v3AuthNumDaysSkip2FAForTrustedDevices": 30
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({mfaEnabled: true, v3AuthNumDaysSkip2FAForTrustedDevices: 30})
};
fetch('https://api2.rhombussystems.com/api/org/updateMFASettings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/org/updateMFASettings")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"mfaEnabled\": true,\n \"v3AuthNumDaysSkip2FAForTrustedDevices\": 30\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"org": {
"accountBillingContactEmail": "<string>",
"accountOwnerEmail": "<string>",
"accountTechnicalContactEmail": "<string>",
"accountTechnicalContacts": [
"<string>"
],
"address1": "<string>",
"address2": "<string>",
"allowedLoginIpRanges": [
"<string>"
],
"applyMobileSessionLimit": true,
"audioAnalysisEnabled": true,
"audioRecordingEnabled": true,
"bandwidthReportsDisabled": true,
"companyLogoUrl": "<string>",
"companyLogoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"connectivityBatchWindowSecs": 123,
"countryCode": "<string>",
"createdAtMillis": 123,
"criticalStatusEnabled": true,
"defaultPlayerViewLiveType": "REALTIME",
"deleted": true,
"deletedAtMillis": 123,
"developmentPartnerOrg": true,
"firmwareUpdateSettings": {
"intervalsV2": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mode": "MANUAL"
},
"firmwareUpdateSettingsOverrides": [
{
"deviceTypes": [
"BLE_TRACKER"
],
"firmwareUpdateSettings": {
"intervalsV2": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mode": "MANUAL"
}
}
],
"inactivityTimeout": 123,
"itemizedInvoice": true,
"keypadLogoUrl": "<string>",
"keypadLogoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"llmUsageEnabled": true,
"maxAllowedSegmentMaxBytesMap": {},
"mfaEnabled": true,
"mobileSessionLimitInDays": 123,
"motionGridDisabled": true,
"motionLightweightDisabled": true,
"name": "<string>",
"newCameraFramerateMap": {},
"newCameraResolutionMap": {},
"newCameraSegmentMaxBytesMap": {},
"newCameraVideoTargetQualityMap": {},
"newCameraZeroMotionVideoQualityMap": {},
"notifyForHardwareFailureTickets": true,
"paneLinks": [
{
"description": "<string>",
"label": "<string>",
"paneId": "<string>",
"permissionGroupUuids": [
"<string>"
],
"userUuids": [
"<string>"
]
}
],
"partnerAccessAllowedUntil": 123,
"postalCode": "<string>",
"rhombusKeyLogoUrl": "<string>",
"rhombusKeyLogoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"salesforceAccountId": "<string>",
"shareAiTrainingMediaWithRhombus": true,
"subscriptionEndDate": 123,
"subscriptionStatus": "TRIAL",
"subscriptionType": "STARTER",
"supportAccessAllowedUntil": 123,
"tenantUrl": "<string>",
"thumbstripDisabled": true,
"type": "PARTNER",
"uapSettings": {
"enabled": true,
"text": "<string>"
},
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"v3AuthNumDaysSkip2FAForTrustedDevices": 123
},
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request object for updating MFA settings.
Last modified on August 21, 2026
⌘I