List Auth Tokens
List all namespace user tokens across the system, with optional filtering by namespace.
{
"namespace": "customer_ns_1"
}
curl -X GET "https://<domain>/api/vault/super-admin/namespace/auth-token/list?namespace=customer_ns_1" \
-H "Authorization: Bearer <MASTER_API_KEY>"
{
"data": [
{
"namespace": "customer_ns_1",
"auth_tokens": ["<TOKEN_1>", "<TOKEN_2>"]
}
],
"success": true,
"error": { "message": "" }
}
Lists all namespace user tokens. You can optionally filter by namespace.
Endpoint
| Method | Endpoint |
|---|---|
GET | https://<domain>/api/vault/super-admin/namespace/auth-token/list |
Query parameters
query
namespacestring
Filter tokens by namespace. If omitted, returns all tokens across all namespaces.
Was this page helpful?
Last updated 1 day ago
Built with Documentation.AI