Replies: 1 comment
-
The Processor is calling: protected function storeWebhook(): WebhookCall
{
return $this->config->webhookModel::storeWebhook($this->config, $this->request);
} so you should use your own |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, I have my application set to create a webhook with a uuid for example local.test/webhooks/355950cd-c7aa-4188-8651-2073d12c01e4.
I have one Handler job that processes the information.However, now my users are requesting they can receive webhooks from another third party with the same url...
What is the best way to process a webhook based on the url/host it is coming from?
In Process.php we do not have access to the request only the webhookCall.
Beta Was this translation helpful? Give feedback.
All reactions