***

title: update
slug: /reference/python/rest/fabric/cxml-webhooks/update
description: Partially update a cXML webhook resource.
max-toc-depth: 3
---------------------

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

Partially update a cXML webhook resource. Uses PATCH for partial.

<EndpointSchemaSnippet endpoint="PATCH /api/fabric/resources/cxml_webhooks/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="PATCH /api/fabric/resources/cxml_webhooks/{id}" />

## **Example**

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

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

updated = client.fabric.cxml_webhooks.update("webhook-id", name="updated-name")
print(f"Updated: {updated['display_name']}")
```