- Home
- API MCP Server
- tools
- authentication
- Scim Token
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.
| Tool | Description |
|---|---|
f5xc-api-authentication-scim-token-create | Revoke SCIM API credential. |
f5xc-api-authentication-scim-token-list | GET Scim Token. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Scim Token resources:
Create Scim Token
Section titled “Create Scim Token”“Create a scim-token named ‘example’ in the ‘production’ namespace”
List Scim Tokens
Section titled “List Scim Tokens”“List all scim-tokens in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scim_tokens/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"