Webhook to EspoCRM without authorization

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dimyy
    Active Community Member
    • Jun 2018
    • 569

    Webhook to EspoCRM without authorization

    How to use web hooks in external services without auth?

    In 5.* version I was able to create entryPoint. Now POST request in entrypoints is blocked.
  • dimyy
    Active Community Member
    • Jun 2018
    • 569

    #2
    Solution in creating a route without authorization like LeadCapture
    Code:
    {
    "route": "/LeadCapture/:apiKey",
    "method": "post",
    "params": {
    "controller": "LeadCapture",
    "action": "leadCapture",
    "apiKey": ":apiKey"
    },
    "noAuth": true
    },
    Am I right?

    Comment

    • yuri
      Member
      • Mar 2014
      • 8440

      #3
      Right. https://docs.espocrm.com/development...ction/#example
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      Working...