001
Official
No Search Result
The query returned an empty result set. This is not a failure — it means no records exist matching the request.
Likely Causes
- Querying for purchases before any exist
- Querying stock before any movements have been recorded
- Valid query with no matching data
Fix
Treat this as an empty list [], not an exception. Only raise if your business logic requires at least one result.
Gotcha
Most public SDKs check if resultCd != "000" and raise an exception here. New integrations querying for purchases on day one hit this constantly and believe their integration is broken.
Related Errors