List SCIM tokens
GET
/api/admin/scim-tokens
Code sample: Shell / cURL
curl --request GET \ --url https://auth.example.com/api/admin/scim-tokens \ --header 'Authorization: Bearer <token>'Lists SCIM provisioning tokens for the current tenant. Plaintext token values are never returned by this endpoint.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”SCIM token list response.
Media type application/json
object
tokens
required
Array<object>
object
tokenHash
required
string
tenantId
string
description
required
string
createdAt
required
string format: date-time
expiresAt
required
string | null format: date-time
enabled
required
boolean
key
additional properties
total
required
integer
key
additional properties
Example
{ "tokens": [ { "tokenHash": "sha256:abc123", "tenantId": "tenant_123", "description": "SCIM provisioning token", "createdAt": "2026-06-20T00:00:00.000Z", "expiresAt": "2027-06-20T00:00:00.000Z", "enabled": true } ], "total": 1}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}