***

title: update
slug: /reference/python/rest/fabric/cxml-applications/update
description: Replace a cXML application resource.
max-toc-depth: 3
---------------------

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

Replace a cXML application resource. Uses PUT, so the full resource body must be provided.

<EndpointSchemaSnippet endpoint="PUT /api/fabric/resources/cxml_applications/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="PUT /api/fabric/resources/cxml_applications/{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_applications.update(
    "app-id", display_name="updated-cxml-app",
)
print(f"Updated: {updated['display_name']}")
```