- Home
- API MCP Server
- tools
- virtual
- other
- Sources Openapi Schema
Sources Openapi Schema
GET openapi schema per API endpoint for a given source types and Virtual Host.
| Tool | Description |
|---|---|
f5xc-api-virtual-sources-openapi-schema-get | GET relevant source OpenApi schema per API endpoint. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | Virtual Host | - |
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
discovery_source_types | List of wanted discovery source types | - |
id | Endpoint ID. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Sources Openapi Schema resources:
Get Sources Openapi Schema Details
Section titled “Get Sources Openapi Schema Details”“Get details of the sources-openapi-schema named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/sources_openapi_schemas" \ -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}/sources_openapi_schemas/<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}/sources_openapi_schemas" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @sources_openapi_schema.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/sources_openapi_schemas/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"