- Home
- API MCP Server
- tools
- support
- other
- Change Password
Change Password
Change host user password.
| Tool | Description |
|---|---|
f5xc-api-support-change-password-create | ChangePassword. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
node | Node Name | - |
site | Site Name | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
secret_info_oneof
Section titled “secret_info_oneof”| Option | Description | Recommended |
|---|---|---|
current_password.blindfold_secret_info | - | |
current_password.clear_secret_info | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Change Password resources:
Create Change Password
Section titled “Create Change Password”“Create a change-password named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/change_passwords" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/change_passwords/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/change_passwords" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @change_password.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/change_passwords/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"