Skip to main contentSkip to FAQSkip to contact
HTTP 404Settlement

not_found

Resource (RFQ, quote, order, settlement) not found.

Back to all errors

What this means

The requested resource ID doesn't exist. It may have been purged after settlement, never been created, or belong to a different environment.

How to recover

Verify the ID and environment. Settlement records are retained for 90 days - older records return 404.

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": "not_found",
4 "message": "Resource (RFQ, quote, order, settlement) not found.",
5 "docs_url": "https://tetrafi.io/docs/integration/errors/not_found/"
6 }
7}
7 linesjson

Match in code

TypeScript
1try {
2 await tetrafi.rfq.create({ /* ... */ });
3} catch (err) {
4 if (err.code === "not_found") {
5 // Verify the ID and environment. Settlement records are retained for 90 days - older records return 404.
6 }
7 throw err;
8}
8 linestypescript

Related settlement errors