API Triggers
REST API
Section titled “REST API”Send data to any REST API endpoint.
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | ✅ | API endpoint URL. Supports ${variable}. |
method |
string | ✅ | HTTP method: GET, POST, PUT, DELETE, PATCH |
headers |
object | ❌ | Request headers |
params |
object | ❌ | URL query parameters |
json_data |
object | ❌ | JSON request body |
Example:
url: https://api.example.com/webhookmethod: POSTheaders: Authorization: Bearer ${api_key}json_data: event: "scrape_complete" data: ${dataset}output_variable: api_responseGraphQL API
Section titled “GraphQL API”Send GraphQL queries or mutations.
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | ✅ | GraphQL endpoint URL |
query |
string | ✅ | GraphQL query/mutation string |
variables |
object | ❌ | Query variables |
headers |
object | ❌ | Request headers |
SOAP API
Section titled “SOAP API”Call SOAP web services.
| Parameter | Type | Required | Description |
|---|---|---|---|
wsdl_url |
string | ✅ | WSDL file URL |
service_name |
string | ✅ | Service name from WSDL |
port_name |
string | ✅ | Port name from WSDL |
operation_name |
string | ✅ | Operation to call |
arguments |
object | ❌ | Operation arguments |