Announcement

Collapse
No announcement yet.

Webhook to EspoCRM without authorization

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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.

  • #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


    • #3
      Right. https://docs.espocrm.com/development...ction/#example

      Comment

      Working...
      X