ngrok - Send data to endpoint
This guide documents how to configure a custom action in Torii to send data to an ngrok endpoint.
ngrok delivers instant ingress to your apps in any cloud, private network, or devices with authentication, load balancing, and other critical controls.
Additional ngrok documentation can be found at this link.
Custom Action Configuration
Method : POST
URL : http://<your.ngrok.url>
Query Parameters
Parameter | Variable Mapping |
---|---|
[Trigger.User.Email] | |
first | [Trigger.User.First-name] |
last | [Trigger.User.Last-name] |
Headers
Header | Value |
---|---|
Content-Type | application/json |
Body
{
"EmailAddress": "[Trigger.User.Email]"
}
Congratulations! At this point you should have successfully created the custom action.
Tips
You can customize the ngrok request based on your requirements. The attributes available to you will depend upon the workflow trigger you have selected.
Updated over 1 year ago