Get compliance document statuses for an organization.
const url = 'https://api.adversarial.com/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/compliance';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.adversarial.com/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/complianceParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Responses
Section titled “Responses”Compliance document statuses
A list of compliance documents with their current status.
Provides basic information about one version of a document. The document list contains one row per (slug, version) the organization can see.
object
When the organization retired this version. Only set on archived rows.
The compliance-program section containing a document.
The edition of a document as YYYY.M.N: the year and month it was issued, then a sequence number counting editions issued in that month. Components carry no leading zeros.
The document has not been initialized yet. It is possible for the document to have details, meaning that a proposal is “open” to initialize it.
object
The initial proposal is being opened
object
The initial proposal is being opened
object
The edition of a document as YYYY.M.N: the year and month it was issued, then a sequence number counting editions issued in that month. Components carry no leading zeros.
The document has been initialized and is ready for use
object
The document has been initialized and is ready for use
object
The edition of a document as YYYY.M.N: the year and month it was issued, then a sequence number counting editions issued in that month. Components carry no leading zeros.
The version this row describes.
Whether a document version is the organization’s current one, a retired one it previously used, or an in-flight adoption draft.
Example
[ { "category": "governance", "latest_version": "2026.9.1", "slug": "cisp", "state": { "value": "uninitialized" }, "version": "2026.9.1", "version_state": "current" }]Organization not found