- Home
- API MCP Server
- tools
- tenant-and-identity
- identity
- Unset
Unset
Unset admin ntfn preference unsets specific admin notification preference for the user and store it in user settings object. It can be used in email newsletters to allow easy unsubscribing for users.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-unset-update | Unset admin ntfn preference. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Unset resources:
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/unsets" \ -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}/unsets/<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}/unsets" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @unset.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/unsets/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"