Server SDKs
Build AI agents, control calls, send messages, and more
Get and update the project SIP profile. This is a singleton resource with get() and update() methods (no list/create/delete).
get()
update()
Access via client.sipProfile on a RestClient instance.
client.sipProfile
RestClient
Retrieve the current project SIP profile.
Update the project SIP profile.
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient();45const profile = await client.sipProfile.get();6console.log(profile);