Create HTTP POST endpoint for external service

@giri-zano I have tried creating the wix http-functions end point. However, I’m getting a 404 error.

I created a http-functions.js in Backend.

And, wrote this dummy function:

export function get_check(request) {
   let options = {
    "headers": {
      "Content-Type": "application/json"
    }
  };
  options.body = {
          "items": "Hello"
        };
        return ok(options);
}

I am accessing this using: www. thecaninecompany. in/_functions/check
with a GET request. I am getting a 404 error.

I have published the site too.