- Home
- API MCP Server
- tools
- shape
- shape-security
- FormField
FormField
List form fields for all the scripts depending on start time and end time with GET method.
| Tool | Description |
|---|---|
f5xc-api-shape-formfield-create | List All Form Fields. |
f5xc-api-shape-formfield-get | GET Form Field. |
f5xc-api-shape-formfield-list | List All Form Fields with GET method. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
id | ID | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
end_time | X-required | - |
start_time | X-required | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with FormField resources:
Create FormField
Section titled “Create FormField”“Create a formField named ‘example’ in the ‘production’ namespace”
List FormFields
Section titled “List FormFields”“List all formFields in the ‘production’ namespace”
Get FormField Details
Section titled “Get FormField Details”“Get details of the formField 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}/formFields" \ -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}/formFields/<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}/formFields" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @formField.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/formFields/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"