How do you suppress unnecessary JSON output from webhook integration?

I have a form that is dynamic where the user can enter in any number of participants and their information. In order to do this a button is used to either finish the form or take the participant back to the beginning of the form to enter in another participant’s information. On the first page the form user enters in a participant’s info and then hits a submit button upon which the webhook is triggered and data is received in our database. Next, they are taken to a fork in the road page where they can hit the add participant button that takes them back to the beginning of the form or a button to finish the form. The webhook is set to trigger when any data is received. Because of this, each time a user selects the add participant button on the fork page a simple JSON structure is sent by the webhook that looks like this:

{
  "id": "1234",
  "feathery_user_id": "asdfadsfds-asdfads-adfadsfad",
  "feathery_form_name": "Form Name",
  "feathery_form_id": "FFFFFF",
  "feathery_form_completed": false
}

I am wondering if there is a way to suppress this and only receive the JSON that contains the data entered into the fields. Hope this makes sense, thanks.

Hi @Grey ,

We don’t have an API that would fit that criteria, but you may modify the response itself to fit your needed json structure.