External Integration
Wire Flow external integration tasks for calling REST APIs from within a workflow using the HTTP Request node.
HTTP Request
Calls an external REST API from within a workflow.
Field
Description
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.
Last updated