API / HTTP Request Actions
What they do: Send HTTP requests to any API endpoint and get data back.
Configuration: - URL: The API endpoint you're calling - Method: GET (read), POST (create), PUT (update), DELETE (remove) - Headers: Optional metadata (authentication tokens, content type) - Body: Optional data to send (for POST/PUT requests)
Common in: Fetching data from services without native integrations, sending data to custom systems.
In the Morning Brief: The HTTP module fetches weather from Open-Meteo API.