***

title: cXML Webhooks
slug: /reference/typescript/rest/fabric/cxml-webhooks
description: Manage cXML webhook resources via the Fabric namespace.
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-webhooks/list

[create]: /docs/server-sdks/reference/typescript/rest/fabric/cxml-webhooks/create

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

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

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

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

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

Access via `client.fabric.cxmlWebhooks` 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.cxmlWebhooks.list();
```

## **Methods**

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

  <Card title="create" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-webhooks/create">
    Create a new cXML webhook resource.
  </Card>

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

  <Card title="update" href="/docs/server-sdks/reference/typescript/rest/fabric/cxml-webhooks/update">
    Partially update a cXML webhook resource.
  </Card>

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

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