***

title: SIP Gateways
slug: /reference/python/rest/fabric/sip-gateways
description: Manage SIP gateway 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/python/rest/client

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

[create]: /docs/server-sdks/reference/python/rest/fabric/sip-gateways/create

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

[update]: /docs/server-sdks/reference/python/rest/fabric/sip-gateways/update

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

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

Manage SIP gateway resources. Standard CRUD with PATCH updates and address listing.

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

## **Methods**

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

  <Card title="create" href="/docs/server-sdks/reference/python/rest/fabric/sip-gateways/create">
    Create a new SIP gateway resource.
  </Card>

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

  <Card title="update" href="/docs/server-sdks/reference/python/rest/fabric/sip-gateways/update">
    Partially update a SIP gateway resource.
  </Card>

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

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