> For the complete documentation index, see [llms.txt](https://docs.sonoransoftware.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sonoransoftware.com/store/street-signs/integrations-and-webhooks.md).

# Integrations and Webhooks

## Sonoran CAD

Street Signs includes configuration for Sonoran CAD related features.

Relevant settings:

```lua
Config.CAD = {
    enabled = true,
    syncOnStartup = true,
    shareIconCatalog = false,
    allowRemoteGridUpdates = true,
    allowRemoteImageUpdates = true
}
```

Use these settings if your Street Signs workflow includes CAD-connected updates or related remote control features.

If you do not use CAD-related features, you can disable them:

```lua
Config.CAD.enabled = false
```

## Power Support

Street Signs also includes a power integration section:

```lua
Config.Power = {
    enabled = false,
    mode = 'sonoran_powergrid'
}
```

If your signs do not need power-related behavior, leave this disabled.

## Discord Webhooks

Street Signs can post webhook messages for:

* Sign create, update, and delete actions
* Blocked banned-word attempts

Enable the system with:

```lua
Config.Webhooks.enabled = true
```

### Sign Change Webhooks

Configure the normal sign activity webhook here:

```lua
Config.Webhooks.signChanges = {
    url = '',
    username = 'Street Signs',
    avatarUrl = '',
    color = 3447003
}
```

This webhook can be used to log:

* New signs
* Text changes
* Theme changes
* Enables and disables
* Deletes

### Banned Word Alert Webhooks

Configure moderation alerts here:

```lua
Config.Webhooks.bannedWordAlerts = {
    url = '',
    username = 'Street Signs Moderation',
    avatarUrl = '',
    color = 15158332,
    mentionRoleIds = {
        -- '123456789012345678'
    }
}
```

This is useful if you want staff to be alerted when a player attempts to save blocked content.

### Legacy Webhook Fields

Street Signs still includes these older fallback fields:

* `Config.Webhooks.signUpdates`
* `Config.Webhooks.audit`

For new setups, prefer `Config.Webhooks.signChanges`.

## Auto Update

Street Signs includes updater support through:

* `sonoran-streetsigns`
* `sonoran-streetsigns_helper`

Auto update is controlled by:

```lua
Config.Updater = {
    EnableAutoUpdate = false
}
```

If enabled, make sure the helper resource is present and command permissions are allowed for the resource.

Example:

```cfg
add_ace resource.sonoran-streetsigns command allow
add_ace resource.sonoran-streetsigns_helper command allow
```

If you do not want automatic updates, leave the feature disabled.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.sonoransoftware.com/store/street-signs/integrations-and-webhooks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
