- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Admin Reset
Admin Reset
Reset password by admin resets password for a user specified in request payload. This request is meant to be executed by the tenant’s admin.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-admin-reset-create | Reset password by admin. |
f5xc-api-tenantandidentity-admin-reset-update | ResetOtpDeviceByAdmin. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Admin Reset resources:
Create Admin Reset
Section titled “Create Admin Reset”“Create a admin-reset 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}/admin_resets" \ -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}/admin_resets/<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}/admin_resets" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @admin_reset.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/admin_resets/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"