***

title: SIP Profile
slug: /reference/python/rest/sip-profile
description: Get and update the project SIP profile.
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

Retrieve and update the project-level SIP profile. This is a singleton resource —
there is one SIP profile per project, so no resource ID is needed.

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

## **Methods**

<CardGroup cols={3}>
  <Card title="get" href="/docs/server-sdks/reference/python/rest/sip-profile/get">
    Retrieve the current project SIP profile.
  </Card>

  <Card title="update" href="/docs/server-sdks/reference/python/rest/sip-profile/update">
    Update the project SIP profile.
  </Card>
</CardGroup>

## **Example**

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

client = RestClient()

profile = client.sip_profile.get()
print(profile.get("username"), profile.get("domain"))
```