Dedicated IPs
Manage dedicated IP inventory, authorization, deletion, and domain assignments. The examples use A2A code mode. MCP exposes the same code mode through itsexecute tool.
Functions
dedicated_ips.addresses.enabled
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | proxy.create | Auth required | yes |
| Execution mode | sync | Capability | proxy.create |
| Resource type | account | Resource ID field | account_id |
| Public API route | PATCH /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/ip-addresses/enabled |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
dedicated_ip_id | str | yes | Dedicated IP UUID from the route path |
enabled | bool | yes | Whether this address should be used for DNS and traffic |
ip_address | str | yes | Assigned IPv4 or IPv6 address to update |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
dedicated_ip_id | str | yes | |
enabled | bool | yes | |
ip_address | str | yes |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.authorize
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | proxy.authorize | Auth required | yes |
| Execution mode | sync | Capability | proxy.authorize |
| Resource type | account | Resource ID field | account_id |
| Public API route | POST /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/authorize |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
dedicated_ip_id | str | yes | Dedicated IP UUID from the route path |
reissue | bool | no | Force reissue of setup key even if one exists |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
id | str | yes | Dedicated IP UUID |
name | str | yes | Customer-visible dedicated IP name |
status | str | yes | Provisioning or lifecycle status |
type | str | yes | Dedicated IP allocation type |
asn | int | null | no | Autonomous system number for the allocation |
country_code | str | null | no | ISO country code for the allocation |
created_at | str | null | no | Creation timestamp |
ip_addresses | [{"ip": str, "enabled"?: bool, "fcrdns_confirmed"?: bool, "healthy"?: bool | null, "rdns"?: str | null}] | no | Public addresses in this allocation |
updated_at | str | null | no | Last update timestamp |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.claim
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | proxy.create | Auth required | yes |
| Execution mode | sync | Capability | proxy.create |
| Resource type | account | Resource ID field | account_id |
| Public API route | POST /v1/public/accounts/{account_id}/dedicated-ips/claim |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
payload | {} | yes | Request for automatically claiming a managed dedicated IP. |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
id | str | yes | Dedicated IP UUID |
name | str | yes | Customer-visible dedicated IP name |
status | str | yes | Provisioning or lifecycle status |
type | str | yes | Dedicated IP allocation type |
asn | int | null | no | Autonomous system number for the allocation |
country_code | str | null | no | ISO country code for the allocation |
created_at | str | null | no | Creation timestamp |
ip_addresses | [{"ip": str, "enabled"?: bool, "fcrdns_confirmed"?: bool, "healthy"?: bool | null, "rdns"?: str | null}] | no | Public addresses in this allocation |
updated_at | str | null | no | Last update timestamp |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.delete
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | proxy.delete | Auth required | yes |
| Execution mode | sync | Capability | proxy.delete |
| Resource type | account | Resource ID field | account_id |
| Public API route | DELETE /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id} |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
dedicated_ip_id | str | yes | Dedicated IP UUID from the route path |
force | bool | no | Force removal when the dedicated IP has assignments |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
dedicated_ip_id | str | yes | |
domain_ids | [str] | yes |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.domains.assign
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | domain.proxy.assign | Auth required | yes |
| Execution mode | sync | Capability | domain.proxy.assign |
| Resource type | account | Resource ID field | account_id |
| Public API route | POST /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/domains/assign |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
dedicated_ip_id | str | yes | Dedicated IP UUID from the route path |
domain_ids | [str] | no | Domain UUIDs or domain names to assign or unassign. |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
dedicated_ip_id | str | yes | |
domain_ids | [str] | yes |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.domains.unassign
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | domain.proxy.assign | Auth required | yes |
| Execution mode | sync | Capability | domain.proxy.assign |
| Resource type | account | Resource ID field | account_id |
| Public API route | POST /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/domains/unassign |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
dedicated_ip_id | str | yes | Dedicated IP UUID from the route path |
domain_ids | [str] | no | Domain UUIDs or domain names to assign or unassign. |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
dedicated_ip_id | str | yes | |
domain_ids | [str] | yes |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.get
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | proxy.view | Auth required | yes |
| Execution mode | sync | Capability | proxy.view |
| Resource type | account | Resource ID field | account_id |
| Public API route | GET /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id} |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
dedicated_ip_id | str | yes | Dedicated IP UUID from the route path |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
id | str | yes | Dedicated IP UUID |
name | str | yes | Customer-visible dedicated IP name |
status | str | yes | Provisioning or lifecycle status |
type | str | yes | Dedicated IP allocation type |
asn | int | null | no | Autonomous system number for the allocation |
country_code | str | null | no | ISO country code for the allocation |
created_at | str | null | no | Creation timestamp |
ip_addresses | [{"ip": str, "enabled"?: bool, "fcrdns_confirmed"?: bool, "healthy"?: bool | null, "rdns"?: str | null}] | no | Public addresses in this allocation |
updated_at | str | null | no | Last update timestamp |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response:
dedicated_ips.list
| Property | Value | Property | Value |
|---|---|---|---|
| Requires permission | proxy.view | Auth required | yes |
| Execution mode | sync | Capability | proxy.view |
| Resource type | account | Resource ID field | account_id |
| Public API route | GET /v1/public/accounts/{account_id}/dedicated-ips |
Arguments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
account_id | str | yes | Account UUID from the route path |
page | int | no | One-based dedicated IP page number |
page_size | int | no | Maximum dedicated IPs per page |
Returns
Returns
| Field | Type | Required | Description |
|---|---|---|---|
items | [{"id": str, "name": str, "status": str, "type": str, "asn"?: int | null, "country_code"?: str | null, "created_at"?: str | null, "ip_addresses"?: [{"ip": str, "enabled"?: bool, "fcrdns_confirmed"?: bool, "healthy"?: bool | null, "rdns"?: str | null}], "updated_at"?: str | null}] | yes | Dedicated IPs on this page |
page | int | yes | Current one-based page number |
page_size | int | yes | Maximum items per page |
total | int | yes | Total matching dedicated IPs |
A2A example
A2A example
Request:Response:
MCP example
MCP example
Request:Response: