Cognito-forms – How to capture post data to use in another application in Cognito Forms

cognito-forms

Is it possible to Capture the posted data form a Cognito Form to be able to use it in another part or plugin on my WordPress site?

What I need to do is create a form with several questions. There will be groups of conditional logic depending on the previous answer. when the form is submitted I need to capture that data to be able to use it for a different plugin and to send the user to a different page of my site.

Is this possible?

Best Answer

I am a developer for Cognito Forms.

You have a couple of options:

  1. You can pass information to another page via the redirect url and querystring paramaters: https://www.cognitoforms.com/support/181/building-forms/posting-data-through-the-redirect-url

  2. You can post the entire form as JSON to a webhook: https://www.cognitoforms.com/support/66/data-integration/webhooks

Your best option in this case would likely be the first option as it will happen synchronously and would support data to both scripts on the client and code on the server. Please add comments to your question to clarify it if this does not answer your question.