Skip to content

FormField

FormField provides tools for creating, listing, and retrieving resources in F5 Distributed Cloud.

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 Namespace.system
idID ID of the form field.-
ParameterDescriptionExample
end_timeX-required format: unix epoch timestamp in seconds…-
start_timeX-required format: unix epoch timestamp in seconds…-

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/shape/csd/namespaces/$${PARAM}/formFields" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/shape/csd/namespaces/$${PARAM}/formFields/${PARAM}" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/shape/csd/namespaces/$${PARAM}/formFields" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @formField.json