Organizations
Update conformance settings
Section titled “Update conformance settings”PATCH /v1/organizations/:orgId/settings/conformanceRequired 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:
| Field | Type | Description |
|---|---|---|
standardId | string | null | ID of the accessibility standard. |
conformanceLevel | string | null | Level ID within the standard. Must be valid for the given standard. |
auditFrequency | 3 | 6 | 12 | null | Audit cadence in months. null means no fixed schedule. |
Example:
{ "standardId": "wcag-2-2", "conformanceLevel": "aa", "auditFrequency": 12}Update enabled modules
Section titled “Update enabled modules”PATCH /v1/organizations/:orgId/settings/modulesRequired 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:
| Field | Type | Description |
|---|---|---|
module | string | The module name (e.g. "issues", "audits", "risks"). |
enabled | boolean | true to enable, false to disable. |
Example:
{ "module": "audits", "enabled": true}Returns the updated list of enabledModules for the organization.
Organization logo
Section titled “Organization logo”See Profile Picture & Logos for endpoints to upload and remove the organization logo.