'Why Oracle Rest Service returns 404 Not Found?
Solution 1:[1]
Whenever I access the module url
Nothing is configured in ORDS to provide a response at the module level, only the TEMPLATE level, and that only if you have a HANDLER defined for the method being used.
You can go to your API, or you can go to the description (OpenAPI Catalog) of the APIs in your module.
- Good: GET http://example.com/ords/myschema/test/1
- Bad: GET http://example.com/ords/myschema/test
- Good: GET http://example.com/ords/open-api-catalog/myschema/test/
Also for anyone else reading this, you can use APEX with ORDS, but you don't HAVE to use APEX with ORDS.
ORDS also has a native IDE for developing REST APIs, as shown in my screenshot. You can read more about this here.
Disclaimer: I'm the product manager at Oracle responsible for Oracle REST Data Services, aka ORDS.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | thatjeffsmith |



