> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leamout.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SIP subscribers

> Provision SIP identities and rotate subscriber credentials.

A subscriber is an organization-owned SIP identity inside a SIP domain.

Create one with:

```json theme={null}
{
  "sip_domain_id": "<sip domain id>",
  "username": "browser",
  "password": "use-a-strong-secret",
  "display_name": "Browser client"
}
```

The public response returns the subscriber ID, organization ID, SIP-domain ID, username, domain, display name, status, and timestamps. The password is not returned.

Rotate the SIP password with:

```text theme={null}
POST /v1/subscribers/{subscriber_id}/credentials/rotate
```

and a body containing the new `password`.
