Server SDKs
Build AI agents, control calls, send messages, and more
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 instance.
client.sip_profile
RestClient
Retrieve the current project SIP profile.
Update the project SIP profile.
1from signalwire.rest import RestClient23client = RestClient()45profile = client.sip_profile.get()6print(profile.get("username"), profile.get("domain"))