Skip to main content
PATCH
/
api
/
sip
/
registrations
/
{registration_id}
cURL
curl --request PATCH \
  --url https://api.ultravox.ai/api/sip/registrations/{registration_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "username": "<string>",
  "password": "<string>",
  "proxy": "<string>"
}'
{
  "registrationId": "<string>",
  "created": "2023-11-07T05:31:56Z",
  "username": "<string>",
  "proxy": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key

Path Parameters

registration_id
string<uuid>
required

Body

application/json
username
string

The SIP username to register as.

Maximum length: 60
password
string

The SIP password for username.

proxy
string

The SIP proxy to register with.

Maximum length: 100

Response

200 - application/json
registrationId
string
required
created
string<date-time>
required
username
string
required

The SIP username to register as.

Maximum length: 60
proxy
string
required

The SIP proxy to register with.

Maximum length: 100
I