JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.keystoneos.xyz/v1/admin/compliance/{check_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "settlement_party_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "provider": "<string>", "status": "<string>", "risk_score": 123, "reference_id": "<string>", "triggered_by": "<string>", "created_at": "2023-11-07T05:31:56Z", "settlement_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "participant_external_id": "", "participant_name": "<string>", "wallet_address": "<string>", "settlement_state": "<string>", "platform_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
Get full details of a compliance check with participant, wallet, and settlement context.
Auth0 JWT access token. See Authentication for details.
Successful Response
Compliance check as seen by an admin, with enriched context.