All Namespace Summary
API usage counts across all namespaces visible to the admin — for platform-level monitoring and tenant usage overview.
curl -X GET "https://<domain>/api/vault/reports/all-namespace-summary?start_date=2024-05-01+00:00:00&end_date=2024-05-31+23:59:59" \
-H "Authorization: Bearer <ADMIN_USER_AUTH_KEY>"
{
"data": [
{
"namespace": "production",
"start_time": "2024-05-01 00:00:00",
"end_time": "2024-05-31 23:59:59",
"count": 482931
},
{
"namespace": "staging",
"start_time": "2024-05-01 00:00:00",
"end_time": "2024-05-31 23:59:59",
"count": 14820
}
],
"next_page_token": null,
"success": true,
"error": { "message": "" }
}
Returns usage counts across all namespaces visible to the admin. Commonly used by platform or super admins to monitor tenant-level activity.
Endpoint
| Method | Endpoint |
|---|---|
GET | https://<domain>/api/vault/reports/all-namespace-summary |
Query parameters
query
start_datestring
RequiredStart of the reporting window. Format: YYYY-MM-DD HH:MM:SS.
query
end_datestring
RequiredEnd of the reporting window. Format: YYYY-MM-DD HH:MM:SS.
query
next_page_tokenstring
Pagination token for large result sets.
Response fields
namespacestring
RequiredNamespace name.
start_timestring
RequiredReporting window start timestamp.
end_timestring
RequiredReporting window end timestamp.
countinteger
RequiredTotal API calls in this namespace during the window.
Was this page helpful?
Last updated 3 weeks ago
Built with Documentation.AI