Update an existing IP access control rule.
curl --request PUT \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/ip-acl/{ip_acl_id} \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"name": "<string>",
"ip_address": "<string>"
}
'{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"ip_address": "192.168.1.0/24",
"description": "Datacenter ACL",
"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}/ip-acl/{ip_acl_id}
X-Auth-ID - Your account Auth IDX-Auth-Token - Your account Auth TokenContent-Type: application/jsonenabled: false instead of deleting the entry.| Field | Type | Required | Description |
|---|---|---|---|
ip_address | string | No | New IPv4 address in dotted-decimal notation. Must be a valid IPv4 address. |
enabled | boolean | No | Whether the IP ACL entry is active. Set to false to disable without deleting. |
description | string | No | Updated description for the IP ACL entry. |
updated_at timestamp.
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "",
"ip_address": "10.40.50.0/24",
"description": "",
"enabled": true,
"created_at": "2026-05-12T05:11:51Z",
"updated_at": "2026-05-12T05:11:51Z"
}
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/ip-acl/c1d2e3f4-a5b6-7890-cdef-1234567890ab \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"ip_address": "192.168.1.200",
"description": "Updated office IP after ISP change"
}'
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/ip-acl/c1d2e3f4-a5b6-7890-cdef-1234567890ab \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"enabled": false
}'
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/ip-acl/c1d2e3f4-a5b6-7890-cdef-1234567890ab \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"description": "Main office - Building A"
}'
{
"error": "Invalid IP address format",
"code": 400
}
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}/ip-acl/{ip_acl_id} \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"name": "<string>",
"ip_address": "<string>"
}
'{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"ip_address": "192.168.1.0/24",
"description": "Datacenter ACL",
"enabled": true,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T11:30:00Z"
}