USER_NOT_FOUND
404invalid_requestNo user with that id under this client.
Cause
The user id does not resolve, or it belongs to another client — cross-client lookups collapse to not-found rather than leaking existence.
How to fix it
Verify the user id came from your own list call, and that the account was not deleted.
Example response
404 USER_NOT_FOUND
JSON
{
"error_code": "USER_NOT_FOUND",
"error_type": "invalid_request",
"error_message": "No user with that id under this client.",
"hint": "Verify the user id came from your own list call, and that the account was not deleted.",
"docs_url": "https://docs.billerapi.com/errors/USER_NOT_FOUND",
"request_id": "d94f5e2a-8c3b-4f1e-9a7d-6b2c1e0f8a34"
}Related
- Error handling — the error envelope shape and how to parse it
- Error code reference — every stable error code
Canonical docs URL: https://docs.billerapi.com/errors/USER_NOT_FOUND
Was this page helpful?