Skip to content

Scim Token

GetScimToken implements querying of scim token. SCIM API token value will be visible only on create API response. This detail RPC will show the current token’s expiry. Returns API credential object.

ToolDescription
f5xc-api-authentication-scim-token-createRevoke SCIM API credential.
f5xc-api-authentication-scim-token-listGET Scim Token.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with Scim Token resources:

“Create a scim-token named ‘example’ in the ‘production’ namespace”

“List all scim-tokens in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scim_tokens" \
-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}/scim_tokens/<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}/scim_tokens" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @scim_token.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scim_tokens/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"