0 Webhook Data to Workflow Fields 4 Dan Dietz posted 4 Years Ago How can I get data posted to the webhook endpoint into my workflow fields?For my webhook Defined Value I have Process Request:{% assign workflowTypeId = QueryString['WorkflowTypeId'] %} {% if workflowTypeId == '33' %} True {% else %} False {% endif %}And I have Workflow Attributes set to (I've tried several variations on this):Attribute Key: BodyLava Template: {{ RawBody }}Here's my request:curl -i --header "Content-Type: application/json" \ --request POST \ --data '{"firstName":"dan"}' \ https://rock.gracechurchsc.dev/Webhooks/LaunchWorkflow.ashx?WorkflowTypeId=33And I've added an Action to the workflow form that's type Lava Run with this lava:{% assign body = Workflow | Attribute:'Body' | FromJSON %}{{ body.firstName }}Workflow docs don't show a complete concrete example, so I'm struggling to connect all the dots-https://community.rockrms.com/documentation/BookContent/12#webhooktoworkflow