[node,webhooks] Authenticated api call while processing a webhook

My public app is subscribing to webhooks like product_update and I need to update the product based on business logic.

The app is using the basic next.js template.

Is this possible since the webhook handler don’t get sessionToken ? How to retrieve it ? Do I need to store it on a database when user authenticate ?

Best,