Incoming Webhook

Triggers when an HTTP request is received.

Be careful about who you share your webhook URL with. Anyone with the URL can trigger your flow, and can provide arbitrary data to your flow.

Inputs

Webhook URL

When this URL is accessed, the flow will trigger.

You are able to regenerate this URL by clicking the Regenerate Webhook URL button.

Example: https://inventor.gg/api/webhooks/abcdefghujklmno/pqrstuvwxyzABCDEFGHIJKLYMNOPQRS

Response Type

The accesser will see the set response type.

If you want to respond to this request with your own data, set it to Custom Plain Text and use the Respond to Incoming Webhook block.

Outputs

Request Method

The method of the request.

Example: GET

Request Body

Contains data that the flow can use.

If you’re receiving JSON data, you can retrieve the values by using the Parse JSON block.

Example: {"key": "value"}

Request Query

The query from the accessed URL.

Example: /search?q=example+query from www.example.com/search?q=example+query

Authorization Header

Contains data that the flow can use for authorization.

Can be useful if you want to restrict who can use your webhook.