> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Outgoing Webhook

Create an outgoing webhook for a team. The webhook sends an HTTP POST to the configured callback URLs when a message matches a trigger word or is posted in a watched channel.

**Required Permissions**: `manage_webhooks` for the team the webhook is in. `manage_others_outgoing_webhooks` is required if the owner of the webhook is different from the requester.

<Note>
  External Documentation

  To learn more, visit the [Mattermost documentation](https://developers.mattermost.com/api-documentation/#/operations/CreateOutgoingWebhook).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                 |
  | ------------- | ------------------------------------------------------------------------------------------- |
  | Callback Urls | A comma-separated list of URLs to post the payloads to when the webhook is triggered.       |
  | Channel ID    | The ID of a public channel that the webhook watches.                                        |
  | Content Type  | The format to POST the data in.                                                             |
  | Creator ID    | The ID of the owner of the webhook if different from the requester. Required in local mode. |
  | Description   | The description for this outgoing webhook.                                                  |
  | Display Name  | The display name for this outgoing webhook.                                                 |
  | Team ID       | The ID of the team that the webhook watches.                                                |
  | Trigger When  | Select when the webhook is triggered.                                                       |
  | Trigger Words | A comma-separated list of words for the webhook to trigger on.                              |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "string",
	"create_at": -9007199254740991,
	"update_at": -9007199254740991,
	"delete_at": -9007199254740991,
	"creator_id": "string",
	"team_id": "string",
	"channel_id": "string",
	"description": "string",
	"display_name": "string",
	"trigger_words": [
		"string"
	],
	"trigger_when": 0,
	"callback_urls": [
		"string"
	],
	"content_type": "string"
}
```

## Workflow Library Example

[Create Outgoing Webhook with Mattermost and Send Results Via Email](https://library.blinkops.com/workflows/create-outgoing-webhook-with-mattermost-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/create-outgoing-webhook-with-mattermost-and-send-results-via-email/canvas" />
</div>
