HTTP 403Compliance
attestation_missing
No compliance attestation on record for this participant.
What this means
No ComplianceRegistry entry was found for this participant address. Either KYC has not been completed or the wrong address was supplied.
How to recover
Complete KYC via your compliance adapter. Verify the address belongs to the onboarded participant.
Example response
All TetraFi errors include a stable code, a human-readable message, and a docs_url pointing to this page.
JSON
1{2 "error": {3 "code": "attestation_missing",4 "message": "No compliance attestation on record for this participant.",5 "docs_url": "https://tetrafi.io/docs/integration/errors/attestation_missing/"6 }7}7 linesjson
Match in code
TypeScript
1try {2 await tetrafi.rfq.create({ /* ... */ });3} catch (err) {4 if (err.code === "attestation_missing") {5 // Complete KYC via your compliance adapter. Verify the address belongs to the onboarded participant.6 }7 throw err;8}8 linestypescript