You can forward response to another service with automation "Forward response to the following address".
With this automation you can push whole answer or part of that to your website form or your service REST API endpoint.
How to use element identifiers
You can use element identifier, for example {{p0e1}}, to pick up the value from element to your automation. p0 means first page, e1 means page second element. See this article to understand how to find element identifier.
How to use answer background information
You can also use answer background information with automation. Just add background information name inside double curly brackets {{yourbackgroundinformationname}}. You'll find background information from Manage view when you click "Meta fields".
For example if your background information name is AgentID then you can add {{agentid}} to automation and it will take agent ID from background information. Remember to use only lowercase characters.
How to add other information
There are couple other information what you can use with automation.
Identifier
If you use identified answers (email or SMS invitations or external link with extid parameter) then you can add identifier to your automation with placeholder {{email}}
It's {{email}} even if you use SMS invitations or external link extid parameter.
Answer ID
Every answer have unique ID and you can add it to your automation with placeholder {{answerid}}
Contact form
If you have contact form you can push there answer from your survey
1. Url: Copy the address from your website form "action" attribute and paste it here
2. Method: Select "POST"
3. Content-Type: Select "application/x-www-form-urlencoded"
4. Headers: Leave empty.
5. Body: Add here your form field names and pick up answer from your survey field. For example:
oid=9421&first_name={{p0e0}}&last_name={{p0e1}}&email={{p0e2}}
Here we have form field "oid" where we put hard coded value "9421". Then we have form fields "first_name", "last_name" and "email" where we pick up values from the survey.
{{p0e0}}, {{p0e1}} and {{p0e2}} are element identifiers. See this article to understand how to find element identifier.
When you save your automation and give one answer to the survey, you should see new answer also in your contact form.
REST API endpoint
If you have REST API endpoint in your service, you can push there request after someone answers to your survey.
1. Url: Add here your service endpoint URL. You can test the automation with Hookbin or with some other service.
2. Method: Select your endpoint method
3. Content-Type: Select your endpoint content type.
4. Headers: You might need to add some header what your endpoint needs. For example "X-Auth-Token"
5. Body: Add here valid content based on content type what is selected. You can use element identifiers like {{p0e0}} to pick up values from survey answer. See this article to understand how to find element identifier.
Save your automation and try to give one answer to the survey and check if you can see answer in your own service.
Here is an example automation configuration which picking up values from four elements (p0e0,p0e1,p0e2,p1e0) and send those forward.
And below you see how it looks in Requestbin. There is header "X-Auth-Token" with value "SomeDemoToken" and body content contains values from the survey.