Skip to main content

I am building an app on monday code, both client side and server side. I am using the workspace app feature to a react page that has a button to fetch data from my database. I am getting a 405 Method not Allowed). It’s a simple fetch() to my server endpoint. Is this not allowed? Do I need to wrap it or something?

I also noticed, this is the same error I get with a POST api call.

You should be fine to to make requests as normal, the 405 response is probably coming from your server.


Does the same request work in postman/curl?