Request
Send an HTTP request from your application to a designated integration and workflow, with the option to receive a synchronous response.
Categories: helpers
Type: request/v1
Triggers
Auto Respond with HTTP 200 Status
Name: autoRespondWithHTTP200
The request trigger always replies immediately with an HTTP 200 status code in response to any incoming workflow request request. This guarantees execution of the request trigger, but does not involve any validation of the received request.
Type: STATIC_WEBHOOK
Output
The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.
JSON Example
{ "label" : "Auto Respond with HTTP 200 Status", "name" : "autoRespondWithHTTP200", "type" : "request/v1/autoRespondWithHTTP200"}
Await Workflow and Respond
Name: awaitWorkflowAndRespond
You have the flexibility to set up your preferred response. After a workflow request is received, the request trigger enters a waiting state for the workflow’s response.
Type: STATIC_WEBHOOK
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
timeout | Timeout (ms) | INTEGER | The incoming request will time out after the specified number of milliseconds. The max wait time before a timeout is 5 minutes. | null |
Output
The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.
JSON Example
{ "label" : "Await Workflow and Respond", "name" : "awaitWorkflowAndRespond", "parameters" : { "timeout" : 1 }, "type" : "request/v1/awaitWorkflowAndRespond"}