I'm currently trying to implement my payment workflow, when I created a webhook in the dashboard it will test with either no body(pressing save in the webhook create/update page), or it sends me (test button in the webhook overview page)
```json
{
"resource": "event",
"id": "event_...",
"type": "hook.ping",
"entityId": "hook_...",
"createdAt": "2026-02-01T12:20:27.0Z",
"embedded": {
"entity": {
"resource": "hook",
"id": "hook...",
"links": {
"self": {
"href": "/v2/webhooks/hook...",
"type": "text/html"
},
"documentation": {
"href": "https://docs.mollie.com/guides/webhooks",
"type": "text/html"
}
}
}
},
"links": {
"self": {
"href": "https://api.mollie.com/v2/events/event_...",
"type": "application/hal+json"
},
"documentation": {
"href": "https://docs.mollie.com/guides/webhooks",
"type": "text/html"
},
"entity": {
"href": "/v2/webhooks/hook...",
"type": "text/html"
}
}
}
However whenever I receive a webhook I get the classic variant
```form
id=tr_...
```
How can I make the webhook use the next-gen? since I saw that classic is no longer recommended