Skip to content

FormField

List form fields for all the scripts depending on start time and end time with GET method.

ToolDescription
f5xc-api-shape-formfield-createList All Form Fields.
f5xc-api-shape-formfield-getGET Form Field.
f5xc-api-shape-formfield-listList All Form Fields with GET method.
ParameterDescriptionExample
namespaceNamespace-
idID-
ParameterDescriptionExample
end_timeX-required-
start_timeX-required-

Ask Claude to help you work with FormField resources:

“Create a formField named ‘example’ in the ‘production’ namespace”

“List all formFields in the ‘production’ namespace”

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

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