Update the password for an existing SIP credential.
curl --request PUT \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/credentials/{credential_id} \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"password": "<string>"
}
'{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "acme_sip_user_01",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T11:30:00Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
PUT https://api.vobiz.ai/api/v1/account/{auth_id}/credentials/{credential_id}
X-Auth-ID - Your account Auth IDX-Auth-Token - Your account Auth TokenContent-Type: application/json| Field | Type | Required | Description |
|---|---|---|---|
password | string | No | New SIP password. Minimum 8 characters. Recommended: 12+ characters with mixed case, numbers, and special characters. |
enabled | boolean | No | Whether the credential is active. Set to false to temporarily disable authentication without deleting the credential. Set to true to re-enable. |
description | string | No | Updated description for the credential (e.g., “Rotated password on 2025-01-22” or “Assigned to new device”). |
username field cannot be updated. It is immutable after credential creation.updated_at timestamp reflects when the change was made.
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "sipuser_demo",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-05-12T05:11:51.635107Z",
"updated_at": "2026-05-12T05:11:51.683393Z"
}
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/credentials/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"password": "UpdatedSecurePassword456!",
"description": "Password rotated on 2025-01-22"
}'
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/credentials/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"enabled": false,
"description": "Temporarily disabled for maintenance"
}'
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/credentials/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"enabled": true,
"description": "Re-enabled after maintenance"
}'
enabled flag to disable credentials temporarily instead of deleting themcredential_id does not exist or does not belong to the specified trunk, the API returns a 404 Not Found error.Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
Was this page helpful?
curl --request PUT \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/credentials/{credential_id} \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"password": "<string>"
}
'{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "acme_sip_user_01",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T11:30:00Z"
}