Citie¶
Low Risk
Operations on this resource are generally safe.
Returns a list of known cities of a country/state.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-citie-list | List cities. |
Parameters¶
Path Parameters¶
| Parameter | Description | Example |
|---|---|---|
country_code | Country code | - |
prefix | Prefix | - |
state_code | State code | - |
Example Usage¶
Ask Claude to help you work with Citie resources:
List Cities¶
"List all cities in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/cities" \
-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}/cities/<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}/cities" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @citie.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/cities/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"