OpenapiCompliance
Returns one tracked accreditation record.
Returns one tracked accreditation record.
GET /v1/compliance/accreditation/{id}
| Address | https://api.hanzo.ai/v1/compliance/accreditation/{id} |
| Method | GET |
| Operation | get_compliance_accreditation_by_id |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns one tracked accreditation record.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | ID is the accreditation record to read, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | accView | ok |
200 body — 11 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
basis | body | string | — | Basis is the qualification category: income, net_worth, professional_license, or entity. |
createdAt | body | integer | — | CreatedAt is the unix second the record was created. |
evidenceDocId | body | string | — | EvidenceDocID references an evidence document in the org's sealed data room. |
expiresAt | body | integer | — | ExpiresAt is the unix second a confirmation ages out; 0 means none. |
id | body | string | — | ID is the accreditation record's opaque id. |
method | body | string | — | Method is how the state was established: self_attested, third_party_letter, or provider_verified. |
note | body | string | — | Note is a non-PII operator note. |
reviewerSub | body | string | — | ReviewerSub is the org user who recorded a decision on this record. |
status | body | string | — | Status is the tracked state: asserted, provider_verified, reviewer_confirmed, rejected, or expired. |
subjectId | body | string | — | SubjectID is the opaque id of the subject the record is about. |
updatedAt | body | integer | — | UpdatedAt is the unix second the record last changed. |
Failure carries the platform error shape — see Errors.
Examples
hanzo compliance accreditation get <id>import { Configuration, ComplianceApi } from 'hanzoai';
const api = new ComplianceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getComplianceAccreditationById({ id: 'id' });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_by_id(id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ComplianceAPI.GetComplianceAccreditationById(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_by_id(&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).getComplianceAccreditationById();curl https://api.hanzo.ai/v1/compliance/accreditation/<id> \
-H "Authorization: Bearer $HANZO_API_KEY"Tool compliance, op get_compliance_accreditation_by_id — 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_by_id",
"input": {
"id": "<id>"
}
}
}
}'How is this guide?