REST Client

SIP Profile

View as MarkdownOpen in Claude

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.

Methods

Example

1from signalwire.rest import RestClient
2
3client = RestClient()
4
5profile = client.sip_profile.get()
6print(profile.get("username"), profile.get("domain"))