invalid_request_error404What happened
The claim id you provided does not match any claim in your account. This can happen if the id is wrong or the claim belongs to a different account.How to fix
CallGET /v1/claims to retrieve your claims and confirm the id.
Common causes
Typo in the claim id
Typo in the claim id
Claim ids are UUIDs — a single wrong character produces a 404.
Claim belongs to a different account
Claim belongs to a different account
Each claim is scoped to the account that created it. A token from account A cannot access claims from account B.
Using a schema id instead of a claim id
Using a schema id instead of a claim id
POST /v1/schemas/:id/... and POST /v1/events use different id namespaces (schema id vs claim id).
Make sure you are passing a claim id in the claim_id field, not a schema id.