OpenapiCompliance
Polls the wired provider for its current decision and records it, ATTRIBUTED to…
Polls the wired provider for its current decision and records it, ATTRIBUTED to the provider — the internal PULL reconcile.
POST /v1/compliance/verifications/{id}/refresh
| Address | https://api.hanzo.ai/v1/compliance/verifications/{id}/refresh |
| Method | POST |
| Operation | post_compliance_verifications_by_id_refresh |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Polls the wired provider for its current decision and records it, ATTRIBUTED to the provider — the internal PULL reconcile. For the Manual provider the check stays pending; for a hosted provider it reflects the provider's settled status. A poll error is a 502, never a verification.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | ID is the verification to act on, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | checkView | ok |
200 body — 10 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
createdAt | body | integer | — | CreatedAt is the unix second the verification was started. |
decidedAt | body | integer | — | DecidedAt is the unix second a terminal status was recorded. |
decidedBy | body | string | — | DecidedBy records who settled a terminal status: the provider name, or a reviewer's user id for a recorded manual decision. |
id | body | string | — | ID is the verification's opaque id. |
kind | body | string | — | Kind is the party type: "individual" (KYC) or "business" (KYB). |
provider | body | string | — | Provider is the verification provider this check runs through. |
status | body | string | — | Status is the check's state: pending, provider_verified, provider_rejected, manual_review, or expired (provider-reported), or reviewer_confirmed — the one… |
subjectId | body | string | — | SubjectID is the opaque id of the subject under verification. |
updatedAt | body | integer | — | UpdatedAt is the unix second the verification last changed. |
verifyUrl | body | string | — | VerifyURL is the provider's hosted verification flow for the subject, when one exists. |
Failure carries the platform error shape — see Errors.
Examples
hanzo compliance verifications refresh <id>import { Configuration, ComplianceApi } from 'hanzoai';
const api = new ComplianceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postComplianceVerificationsByIdRefresh({ 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).post_compliance_verifications_by_id_refresh(id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ComplianceAPI.PostComplianceVerificationsByIdRefresh(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::post_compliance_verifications_by_id_refresh(&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).postComplianceVerificationsByIdRefresh();curl -X POST https://api.hanzo.ai/v1/compliance/verifications/<id>/refresh \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches compliance through the compliance tool, which names its 17 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_compliance_accreditation"
}
}
}'How is this guide?