API Call
Make HTTP requests to external APIs and use the response in your flow.
Configuration
| Field | Description |
|---|---|
| Method | GET, POST, PUT, DELETE |
| URL | The API endpoint |
| Headers | Authentication and other headers |
| Body | Request data (for POST/PUT) |
Using the Response
The API response is stored and available in next nodes:
apiResult.data— Response bodyapiResult.data.fieldName— Specific field
Example: CRM Lookup
- Method: GET
- URL: Your CRM endpoint with user email
- Headers: Authorization header with API key
Then use apiResult.data.tier in an If Condition.
Use Cases
- Look up customer data in CRM
- Create tickets in external systems
- Send notifications to Slack
- Update inventory or orders