- Home
- API MCP Server
- tools
- marketplace
- Register
Register
Use this API to register F5XC AWS marketplace product for F5XC service.
| Tool | Description |
|---|---|
f5xc-api-marketplace-register-create | Register New AWS Account. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Register resources:
Create Register
Section titled “Create Register”“Create a register 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}/registers" \ -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}/registers/<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}/registers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @register.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/registers/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"