OpenapiCompliance
Returns the org's tracked accreditation-state records, newest first — evidence…
Returns the org's tracked accreditation-state records, newest first — evidence entries the org keeps, never a platform certification.
GET /v1/compliance/accreditation
| Address | https://api.hanzo.ai/v1/compliance/accreditation |
| Method | GET |
| Operation | get_compliance_accreditation |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the org's tracked accreditation-state records, newest first — evidence entries the org keeps, never a platform certification.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | — | Limit caps the rows returned; non-positive means the server default. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | accList | ok |
200 body — 13 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | accView[] | — | Data is the org's tracked accreditation records, newest first. |
data[].basis | body | string | — | Basis is the qualification category: income, net_worth, professional_license, or entity. |
data[].createdAt | body | integer | — | CreatedAt is the unix second the record was created. |
data[].evidenceDocId | body | string | — | EvidenceDocID references an evidence document in the org's sealed data room. |
data[].expiresAt | body | integer | — | ExpiresAt is the unix second a confirmation ages out; 0 means none. |
data[].id | body | string | — | ID is the accreditation record's opaque id. |
data[].method | body | string | — | Method is how the state was established: self_attested, third_party_letter, or provider_verified. |
data[].note | body | string | — | Note is a non-PII operator note. |
data[].reviewerSub | body | string | — | ReviewerSub is the org user who recorded a decision on this record. |
data[].status | body | string | — | Status is the tracked state: asserted, provider_verified, reviewer_confirmed, rejected, or expired. |
data[].subjectId | body | string | — | SubjectID is the opaque id of the subject the record is about. |
data[].updatedAt | body | integer | — | UpdatedAt is the unix second the record last changed. |
disclaimer | body | string | — | Disclaimer states that statuses are tracked or provider-reported, never a platform assertion of legal or regulatory compliance. |
Failure carries the platform error shape — see Errors.
Examples
hanzo compliance accreditation listimport { Configuration, ComplianceApi } from 'hanzoai';
const api = new ComplianceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getComplianceAccreditation();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ComplianceApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ComplianceApi(client).get_compliance_accreditation()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ComplianceAPI.GetComplianceAccreditation(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, compliance_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = compliance_api::get_compliance_accreditation(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ComplianceApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new ComplianceApi(client).getComplianceAccreditation();curl https://api.hanzo.ai/v1/compliance/accreditation \
-H "Authorization: Bearer $HANZO_API_KEY"Tool compliance, op get_compliance_accreditation — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "compliance",
"arguments": {
"op": "get_compliance_accreditation",
"input": {}
}
}
}'How is this guide?