Skip to content

Scim Token

Medium Risk

Some operations on this resource may modify or delete data.

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.

Tools

Tool Description
f5xc-api-authentication-scim-token-create Revoke SCIM API credential.
f5xc-api-authentication-scim-token-list GET Scim Token.

Parameters

Path Parameters

Parameter Description Example
namespace Namespace -

Side Effects

Operations on this resource may have the following effects:

Creates:

  • scim-token

Example Usage

Ask Claude to help you work with Scim Token resources:

Create Scim Token

"Create a scim-token named 'example' in the 'production' namespace"

List Scim Tokens

"List all scim-tokens in the 'production' namespace"

CURL Examples

# 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}"