404
Do not retryEndpoint not found — The path itself does not exist — not to be confused with a missing record, which is a `200`.
Response body
{ "error": { "code": "not_found", … } }
Should you retry?
No — the same request will fail the same way. Fix it first.
What it means
This is about routing, not data. A job or company that does not exist, or is out of your scope, is a 200 with an empty result — see not-found semantics. A 404 means the URL you called is not a real endpoint at all.
Common causes
- A typo in the path.
- A v3 path called against the v4 host, or vice versa.
- A path built by hand that does not match any documented route.
How to fix it
Check the path against the V4 API reference — a bug to fix, not to retry.