***

title: Resources
slug: /reference/typescript/rest/fabric/resources
description: Generic resource operations across all Fabric resource types.
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/resources/list

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

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

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

[assignphoneroute]: /docs/server-sdks/reference/typescript/rest/fabric/resources/assign-phone-route

[assigndomainapplication]: /docs/server-sdks/reference/typescript/rest/fabric/resources/assign-domain-application

Generic resource operations that work across all Fabric resource types. Provides
list, get, and delete operations plus address listing and route assignment.

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

## **Methods**

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

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

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

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

  <Card title="assignPhoneRoute" href="/docs/server-sdks/reference/typescript/rest/fabric/resources/assign-phone-route">
    Assign a phone route to a resource.
  </Card>

  <Card title="assignDomainApplication" href="/docs/server-sdks/reference/typescript/rest/fabric/resources/assign-domain-application">
    Assign a domain application to a resource.
  </Card>
</CardGroup>