***

title: Resources
slug: /reference/python/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/python/rest/client

[list]: /docs/server-sdks/reference/python/rest/fabric/resources/list

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

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

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

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

[assigndomainapplication]: /docs/server-sdks/reference/python/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.

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

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

items = client.fabric.resources.list()
```

## **Methods**

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

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

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

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

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

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