# Receive Webhook/HTTP Events

The Webhook Trigger starts your workflow when an incoming HTTP POST request is received. Use it to integrate with external systems, receive data from third-party apps, or trigger workflows manually via API.

**Receive Webhooks / HTTP Events is the default trigger configured in every new workflow.**

### 1. Activate the Trigger

1.1 Create a workflow.

1.2 Save the workflow to activate the trigger.

Once saved, your unique Trigger URL is automatically generated and visible directly in the trigger module.

<figure><img src="/files/JWv45MVBhRIKkPkFlMvv" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/EwHd5rOXqTC2qPR1AkzL" alt=""><figcaption></figcaption></figure>

### 2. Run your Workflow

Click **Run** in the workflow designer to fire the workflow instantly.

### 3. Payload Available to the Workflow

You can define the expected body fields directly in the trigger configuration panel. Click **+ Add** under the **Body** section to add a key and set its type.

<figure><img src="/files/zM9M5wxxvwpBILYjk1Le" alt="" width="375"><figcaption></figcaption></figure>

#### Request Fields

| Field               | Description            | Example                                |
| ------------------- | ---------------------- | -------------------------------------- |
| `method`            | HTTP method used       | `POST`                                 |
| `body`              | Full JSON request body | `{"order_id": "123"}`                  |
| `headers`           | HTTP request headers   | `{"Content-Type": "application/json"}` |
| `queary parameters` | URL Query Parameters   | `{"page": "1", "limit": "10"}`         |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.stacksync.com/agentic-workflows/features/triggers/receive-webhook-http-events.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
