Skip to content

Mapper

Update OIDC mappers updates OIDC mappers in underlying IDM provider.

ToolDescription
f5xc-api-tenantandidentity-mapper-createUpdate OIDC mappers.
f5xc-api-tenantandidentity-mapper-getGET OIDC mappers.
ParameterDescriptionExample
nameOIDC provider name-
namespaceNamespace-

Ask Claude to help you work with Mapper resources:

“Create a mapper named ‘example’ in the ‘production’ namespace”

“Get details of the mapper named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -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 resource
curl -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 resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mappers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"