- Home
- API MCP Server
- tools
- shape
- shape-security
- Application
Application
Update an application’s information.
| Tool | Description |
|---|---|
f5xc-api-shape-application-create | Update Application. |
f5xc-api-shape-application-list | GetApplications. |
f5xc-api-shape-application-delete | DELETE Application. |
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
app_id | Target application ID to DELETE. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Application resources:
Create Application
Section titled “Create Application”“Create a application named ‘example’ in the ‘production’ namespace”
List Applications
Section titled “List Applications”“List all applications in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/applications" \ -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}/applications/<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}/applications" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @application.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/applications/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"