Reporting & AuditingAll Namespace Summary

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

MethodEndpoint
GEThttps://<domain>/api/vault/reports/all-namespace-summary

Query parameters

query
start_datestring
Required

Start of the reporting window. Format: YYYY-MM-DD HH:MM:SS.

query
end_datestring
Required

End of the reporting window. Format: YYYY-MM-DD HH:MM:SS.

query
next_page_tokenstring

Pagination token for large result sets.

Response fields

namespacestring
Required

Namespace name.

start_timestring
Required

Reporting window start timestamp.

end_timestring
Required

Reporting window end timestamp.

countinteger
Required

Total API calls in this namespace during the window.