Skip to content

Pdf

GET PDF of all metrics for a given auto discovered API endpoint for Virtual Host.

ToolDescription
f5xc-api-virtual-pdf-getGET API Endpoint PDF.
ParameterDescriptionExample
nameVirtual Host-
namespaceNamespace-
ParameterDescriptionExample
collapsed_urlAPI endpoint for which PDFs are requested.-
methodMethod of API endpoint for which PDFs are requested.-

Ask Claude to help you work with Pdf resources:

“Get details of the pdf named ‘example’ in namespace ‘production‘“

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