***

title: cXML Applications
slug: /reference/typescript/rest/fabric/cxml-applications
description: Manage cXML application resources.
max-toc-depth: 3
---------------------

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

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

[list]: /docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/list

[get]: /docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/get

[update]: /docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/update

[delete]: /docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/delete

[listaddresses]: /docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/list-addresses

Manage cXML application resources. Supports list, get, update (PUT), and delete operations.

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

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

const items = await client.fabric.cxmlApplications.list();
```

## **Methods**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/list">
    List cXML application resources.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/get">
    Retrieve a single cXML application resource.
  </Card>

  <Card title="update" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/update">
    Replace a cXML application resource.
  </Card>

  <Card title="delete" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/delete">
    Delete a cXML application resource.
  </Card>

  <Card title="listAddresses" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-applications/list-addresses">
    List addresses for a cXML application resource.
  </Card>
</CardGroup>