I can able to subscribe webhook using exact online API,i am not able to get response to CallbackURL from webhook notification.
I subscribed using below request:
$subscription = new \Picqer\Financials\Exact\WebhookSubscription($connection);
$subscription->deleteSubscriptions();
$subscription->CallbackURL = $callback;
$subscription->Topic = $topic;
$subscription->save();
Please give me suggestion to get webhook notification through exact online php API.
After successfully registering of webhook.
I found the solution how to handle request in CallbackURL.
you will get json response.
follow below example you can able to validate your webhook response.