Set up Microsoft Forms automation
This section covers how to set up automation so that a Microsoft Forms submission triggers a SlapFive workflow.
Last updated
[When a new response is submitted][Trigger] When a new response is submitted
↓
[Action] Get response detailsHTTPContent-Type : application/json
x_webhook_secret : your_shared_secret (optional){
"form_name": "Customer Intake Form",
"submitted_at": "@{utcNow()}",
"response_id": "@{triggerOutputs()?['body/responseId']}",
"responder_email": "@{outputs('Get_response_details')?['body/responder']}",
"answers": {
"first_name": "@{outputs('Get_response_details')?['body/FirstName']}",
"last_name": "@{outputs('Get_response_details')?['body/LastName']}",
"company": "@{outputs('Get_response_details')?['body/Company']}",
"use_case": "@{outputs('Get_response_details')?['body/UseCase']}"
}
}