SIP Profile

View as MarkdownOpen in Claude

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 instance.

Methods

Example

1import { RestClient } from "@signalwire/sdk";
2
3const client = new RestClient();
4
5const profile = await client.sipProfile.get();
6console.log(profile);