--- title: Usage full: true _openapi: preload: - ./specs/analytics-api.json toc: - depth: 2 title: Get sandbox usage periods url: '#get-sandbox-usage-periods' - depth: 2 title: Get aggregated usage url: '#get-aggregated-usage' - depth: 2 title: Get usage chart data url: '#get-usage-chart-data' - depth: 2 title: Get per-sandbox usage url: '#get-per-sandbox-usage' structuredData: headings: - content: Get sandbox usage periods id: get-sandbox-usage-periods - content: Get aggregated usage id: get-aggregated-usage - content: Get usage chart data id: get-usage-chart-data - content: Get per-sandbox usage id: get-per-sandbox-usage contents: - content: Returns individual usage records for a specific sandbox within a time range heading: get-sandbox-usage-periods - content: Returns organization-level resource usage totals for a given time period heading: get-aggregated-usage - content: Returns resource usage data points for a given time period with auto-scaled resolution heading: get-usage-chart-data - content: Returns resource usage aggregated per sandbox for a given time period heading: get-per-sandbox-usage methods: - GET - GET - GET - GET --- {/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */} export default function Layout(props) { const { APIPage, OpenAPIPage } = props.components ?? {}; // "APIPage" is the old name from v10, this allows both for backward compatibility const Comp = OpenAPIPage ?? APIPage; return ( <> {props.children} ); }