Adding FORM ID Option to Webhooks

My idea is:
To add a parameter for Form ID to the Submit Form Webhook Option

I think these groups of people would benefit from this idea:
Anyone who uses this feature

Why I think they would benefit from this idea:
In the current environment this webhook sends every form submission to a specific destination. If an instance has multiple forms then every form submission gets passed to the endpoint. If there are multiple forms then a lot of data is passed through

Any code or resources to support this idea:

Are you willing to work on this idea?:
Happy to test and help with documentation

What skills and resources do you need to explore this further?
Development

Using the global Webhooks, the JSON returned from the webhook sent on any form submission, gives me the Form ID in the body.

"body": {
"mautic.form_on_submit": [
  {
  "submission": {
    "id": 86,
    "someInfo": {
      "yada": "yada yada"
    }
  },
  "form": {
    "id": 14,  <== **RIGHT HERE**
    "name": "Test Contact Form",
    "alias": "test_form",
    "category": [
    ]
  },
  "lead": {
    "id": "blah blah" ...

Inside an automation software like Zapier/n8n I can create a Switch or IF to handle multiple different form submissions.

But it’s also possible for an individual form to send its own webhook data. See here.

EP