> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# SWML Webhooks

> Manage SWML webhook resources via the Fabric namespace.

[restclient]: /docs/server-sdks/reference/python/rest/client

[list]: /docs/server-sdks/reference/python/rest/fabric/swml-webhooks/list

[create]: /docs/server-sdks/reference/python/rest/fabric/swml-webhooks/create

[get]: /docs/server-sdks/reference/python/rest/fabric/swml-webhooks/get

[update]: /docs/server-sdks/reference/python/rest/fabric/swml-webhooks/update

[delete]: /docs/server-sdks/reference/python/rest/fabric/swml-webhooks/delete

[listaddresses]: /docs/server-sdks/reference/python/rest/fabric/swml-webhooks/list-addresses

Manage SWML webhook resources. Standard CRUD with PATCH updates and address listing.

Access via `client.fabric.swml_webhooks` on a [`RestClient`][restclient] instance.

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

items = client.fabric.swml_webhooks.list()
```

## **Methods**

#### [list](/docs/server-sdks/reference/python/rest/fabric/swml-webhooks/list)

List SWML webhook resources.

#### [create](/docs/server-sdks/reference/python/rest/fabric/swml-webhooks/create)

Create a new SWML webhook resource.

#### [get](/docs/server-sdks/reference/python/rest/fabric/swml-webhooks/get)

Retrieve a single SWML webhook resource.

#### [update](/docs/server-sdks/reference/python/rest/fabric/swml-webhooks/update)

Partially update a SWML webhook resource.

#### [delete](/docs/server-sdks/reference/python/rest/fabric/swml-webhooks/delete)

Delete a SWML webhook resource.

#### [list\_addresses](/docs/server-sdks/reference/python/rest/fabric/swml-webhooks/list-addresses)

List addresses for a SWML webhook resource.