- Home
- API MCP Server
- tools
- marketplace
- Registration Detail
Registration Detail
Use this API to to GET registration details (currently limited to email address and domain) associated with a specific asb_message object.
| Tool | Description |
|---|---|
f5xc-api-marketplace-registration-detail-list | GET Registration Details. |
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
token | The token contains the encrypted data, secured using an HMAC key. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Registration Detail resources:
List Registration Details
Section titled “List Registration Details”“List all registration-details in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/registration_details/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"