Skip to main content
Webhooks with HTTP Requests
Lutra avatar
Written by Lutra
Updated over 3 weeks ago

If you’re using a tool or service that lets you craft custom HTTP requests (e.g., an internal system, a low-code platform, or a third-party app), you can integrate it with Lutra by making a POST request to the Webhook URL.

Requirements

  • Webhook URL and Token from Lutra.

  • An application or service that can perform an HTTP POST with custom headers.

Steps

  1. Create a Webhook in Lutra

    • From your chosen Playbook, click “Webhook.”

    • Copy the URL and X-Lutra-Webhook-Token.

  2. Configure an HTTP POST

    • In your external application, set the request method to POST.

    • URL: Paste the Lutra-provided URL (e.g., https://lutra.ai/api/webhooks/<WEBHOOK_ID>/runs).

    • Headers:

      • Content-Type: application/json

      • X-Lutra-Webhook-Token: <YOUR_TOKEN>

    • Body: A JSON object containing the inputs to your Playbook, for example:

      { "condition": "heart attack", "destination_sheet": { "id": "1234567890abcdef", "mime_type": "application/vnd.google-apps.spreadsheet", "name": "Heart Attack Clinical Trials" } }
  3. Check Response

    • A successful request returns a 201 Created status. The JSON response contains:

      • run_id

      • started_at

      • latest_event_at

      • user_requested_cancel_at

      • workflow_input

      • result (this is null at first until the run completes)

  4. Polling for Completion (Optional)

    • The Location header in the response points to a URL you can GET to see the updated run state. Use the same X-Lutra-Webhook-Token header.

    • Once result is non-null, the run has finished.

Did this answer your question?