Skip to content

Registration Detail

Use this API to to GET registration details (currently limited to email address and domain) associated with a specific asb_message object.

ToolDescription
f5xc-api-marketplace-registration-detail-listGET Registration Details.
ParameterDescriptionExample
tokenThe token contains the encrypted data, secured using an HMAC key.-

Ask Claude to help you work with Registration Detail resources:

“List all registration-details in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/registration_details" \
-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}/registration_details/<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}/registration_details" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @registration_detail.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/registration_details/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"