Skip to content

Organizations

PATCH /v1/organizations/:orgId/settings/conformance

Required role: Admin or owner.

Updates the organization’s default conformance target and audit frequency. These defaults apply to products that do not override them.

Request body:

FieldTypeDescription
standardIdstring | nullID of the accessibility standard.
conformanceLevelstring | nullLevel ID within the standard. Must be valid for the given standard.
auditFrequency3 | 6 | 12 | nullAudit cadence in months. null means no fixed schedule.

Example:

{
"standardId": "wcag-2-2",
"conformanceLevel": "aa",
"auditFrequency": 12
}

PATCH /v1/organizations/:orgId/settings/modules

Required role: Admin or owner.

Enables or disables optional feature modules. Dependencies are resolved automatically — enabling a module also enables any modules it depends on. Required modules (core, organizations, teams, products) cannot be disabled.

Request body:

FieldTypeDescription
modulestringThe module name (e.g. "issues", "audits", "risks").
enabledbooleantrue to enable, false to disable.

Example:

{
"module": "audits",
"enabled": true
}

Returns the updated list of enabledModules for the organization.


See Profile Picture & Logos for endpoints to upload and remove the organization logo.