- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Mapper
Mapper
Update OIDC mappers updates OIDC mappers in underlying IDM provider.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-mapper-create | Update OIDC mappers. |
f5xc-api-tenantandidentity-mapper-get | GET OIDC mappers. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | OIDC provider name | - |
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Mapper resources:
Create Mapper
Section titled “Create Mapper”“Create a mapper named ‘example’ in the ‘production’ namespace”
Get Mapper Details
Section titled “Get Mapper Details”“Get details of the mapper 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}/mappers" \ -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}/mappers/<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}/mappers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @mapper.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mappers/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"