- Home
- API MCP Server
- tools
- tenant-and-identity
- identity
- ResourceType
ResourceType
Getresourcetypesbyid CustomPublicAPI.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-resourcetype-get | GET supported resources type. |
f5xc-api-tenantandidentity-resourcetype-list | GET supported resources type. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
id | ID | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
excludedAttributes | Members”]“ | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with ResourceType resources:
List ResourceTypes
Section titled “List ResourceTypes”“List all ResourceTypes in the ‘production’ namespace”
Get ResourceType Details
Section titled “Get ResourceType Details”“Get details of the ResourceType 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}/ResourceTypes" \ -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}/ResourceTypes/<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}/ResourceTypes" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @ResourceType.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/ResourceTypes/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"