Custom API endpoint
-
wrote on Aug 20, 2023, 4:30 PM last edited by
what does the app log say?
-
wrote on Aug 20, 2023, 5:51 PM last edited by
It's a standard 404, the route is not registered. It seems the file is not taken into consideration by Directus.
-
wrote on Aug 20, 2023, 7:02 PM last edited by robi Aug 20, 2023, 7:02 PM
The entrypoint of your endpoint is the index file inside the src/ folder of your extension package.
Try moving the index into test-endpoint/src/
-
The entrypoint of your endpoint is the index file inside the src/ folder of your extension package.
Try moving the index into test-endpoint/src/
-
wrote on Aug 21, 2023, 8:19 AM last edited by
check their forum/github issues?
-
wrote on Aug 21, 2023, 9:50 AM last edited by
Just tried, no dice.
-
wrote on Aug 21, 2023, 9:57 AM last edited by
I appreciate you're trying to help by asking me to do the basic checks, but the reason I ask for support here is because the whole plugin integration in Cloudron is different from the standard. (I started by checking the docs and other threads)
The closest I could find on the forum is someone struggling but then not answering @girish when asked for more details and this one where placing the files in the correct spots just worked.
-
-
@ruihildt This works for me:
- First , create
index.mjs
(export keyword requires module support which is signaled by mjs extension)
- Then , in
index.mjs
, I have:
export default { id: 'helloworld', handler: (router) => { router.get('/', (req, res) => res.send('Hello, World!')); router.get('/intro', (req, res) => res.send('Nice to meet you.')); router.get('/goodbye', (req, res) => res.send('Goodbye!')); }, };
*IMPORTANT: Note the id above. This is the REST API route path
- Then, visiting via browser works:
/helloworld/goodbye and /helloworld/goodbye also works fine.
- First , create
-
I appreciate you're trying to help by asking me to do the basic checks, but the reason I ask for support here is because the whole plugin integration in Cloudron is different from the standard. (I started by checking the docs and other threads)
The closest I could find on the forum is someone struggling but then not answering @girish when asked for more details and this one where placing the files in the correct spots just worked.
@ruihildt said in Custom API endpoint:
I appreciate you're trying to help by asking me to do the basic checks, but the reason I ask for support here is because the whole plugin integration in Cloudron is different from the standard.
AFAICT, it's very much the same as the standard. The docs are not very clear and I had to tinker a bit to make it work . For example, it talks about some src subdirectory, I am not sure what that is. It says index, but it's actually index.mjs . So, there's a bunch of errors in their docs.
-
wrote on Aug 23, 2023, 12:02 PM last edited by
Thank you for helping me make it work.
Strange this
.mjs
thing with them, I'm going to open an issue with them. -
-
wrote on Feb 16, 2025, 7:47 PM last edited by
I too have done exactly like this but the response is still "{"errors":[{"message":"Route /helloworld doesn't exist.","extensions":{"path":"/helloworld","code":"ROUTE_NOT_FOUND"}}]}" any idea why
-