Skip to content

Send Password Email

SendPasswordEmail allows admin user to trigger send password email for a user to update user’s password. Deprecated: use ResetPasswordByAdmin RPC instead.

ToolDescription
f5xc-api-tenantandidentity-send-password-email-createSend Password Email.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with Send Password Email resources:

“Create a send-password-email named ‘example’ in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/send_password_emails" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/send_password_emails/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/send_password_emails" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @send_password_email.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/send_password_emails/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"