> For the complete documentation index, see [llms.txt](https://laot7490.gitbook.io/ltbridge/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://laot7490.gitbook.io/ltbridge/game-systems/dispatch/send.md).

# Send

Send dispatch alert to given jobs.

{% hint style="info" %}
**Side:** Client · **Category:** Dispatch · **API:** `LT.Dispatch.Send`
{% endhint %}

## Example

```lua
LT.Dispatch.Send({
    message = 'Store robbery in progress',
    code = '10-90',
    jobs = { 'police' },
    coords = vector3(100.0, 200.0, 30.0),
    blipData = { sprite = 161, color = 1, scale = 1.0 },
})
```

See [Dispatch Data](/ltbridge/game-systems/dispatch/dispatch-data.md) for the full field table.

## Parameters

| Name   | Required | Description                                                                           |
| ------ | -------- | ------------------------------------------------------------------------------------- |
| `data` | Yes      | Dispatch data — see [Dispatch Data](/ltbridge/game-systems/dispatch/dispatch-data.md) |

## Returns

Nothing.
