invalid_request_error404What happened
The customer id you provided does not match any customer in your account. This can happen if the id is wrong or the customer belongs to a different account.How to fix
CallGET /v1/customers to retrieve your customers and confirm the id.
Common causes
Typo in the customer id
Typo in the customer id
Customer ids are UUIDs — a single wrong character produces a 404.
Customer belongs to a different account
Customer belongs to a different account
Each customer is scoped to the account that created it. A token from account A cannot access customers from account B.
Passing customer_id to POST /v1/claims
Passing customer_id to POST /v1/claims
When creating a claim, the
customer_id must belong to your account. If the customer was created by a different account, this error is returned.