---
title: "Action send_me"
description: "Sends an HTTP request with automatic chat_id and channel."
---

# Action `send_me`

> **System ID:** `action_send_me`

## Description

Sends an HTTP request to an external URL and **automatically** adds `chat_id` and `channel` of the current dialog to the data. Convenient for webhooks and integrations that need chat context. Unlike `send_request`, it has no separate Basic/Bearer fields in the schema (authentication can be passed via `headers`).

## Events (scenario branches)

| Event | When it occurs |
|-------|----------------|
| **ok** | Request completed successfully |
| **not_ok** | Network, response, or timeout error |

## Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `url` | string | yes | — | Request URL (placeholders) |
| `method` | string | no | `"POST"` | HTTP method |
| `data` | object | no | `{}` | Extra data (placeholders); `chat_id` and `channel` are added to it |
| `headers` | object | no | `{}` | HTTP headers (placeholders) |

## Configuration example

```json
{
  "url": "https://example.com/webhook",
  "method": "POST",
  "data": {
    "event": "user_registered",
    "user_name": "{{reg_name}}"
  },
  "headers": {}
}
```

## Related docs

- [Actions reference](/en/actionjail/reference/actions-reference.md)
