External Integration
Wire Flow external integration tasks for calling REST APIs from within a workflow using the HTTP Request node.
Last updated
Wire Flow external integration tasks for calling REST APIs from within a workflow using the HTTP Request node.
Calls an external REST API from within a workflow.
Method
GET, POST, PUT, PATCH, DELETE
Endpoint URL
Supports dynamic values: https://api.example.com/orders/{$.body.id}
Request Body
JSONPath to send a subset of the state (e.g., $.body). Leave empty to send the full state
Credential
Select a saved credential for authentication

The next task in the workflow receives the HTTP response in this format:
Use $states.input.body.<field> in a downstream JSONata task to extract response values.
HTTP tasks require a saved credential. If none is selected, Wire Flow uses a fallback method. Credentials are managed in the Secrets Manager — accessible from the Workflow List page or from the HTTP task's Properties Panel.
Last updated
{
"statusCode": 200,
"body": { }
}