***

title: SIP Profile
slug: /reference/typescript/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/typescript/rest/client

Get and update the project SIP profile. This is a singleton resource
with `get()` and `update()` methods (no list/create/delete).

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

## **Methods**

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

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

## **Example**

```typescript {5}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient();

const profile = await client.sipProfile.get();
console.log(profile);
```