action files_get_usage_daily_snapshots { label: "List Usage Daily Snapshots" description: "List Usage Daily Snapshots" provider: files method: GET path: "/usage_daily_snapshots" encoding: json input: { type: "object" properties: { cursor: { type: "string" } filter: { type: "object" } filter_gt: { type: "object" } filter_gteq: { type: "object" } filter_like: { type: "object" } filter_lt: { type: "object" } filter_lteq: { type: "object" } per_page: { type: "integer" format: "int32" } sort_by: { type: "object" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Usage Daily Snapshots" properties: { api_usage_available: { type: "boolean" description: "True if the API usage fields `read_api_usage` and `write_api_usage` can be relied upon. If this is false, we suggest hiding that value from any UI." } current_storage: { type: "integer" format: "int32" description: "GB of Files Native Storage used on this day." } date: { type: "string" format: "date" description: "The date of this usage record" } deleted_files_counted_in_minimum: { type: "integer" format: "int32" description: "GB of Files Native Storage used on this day for files that have been permanently deleted but were uploaded less than 30 days ago, and are still billable." } deleted_files_storage: { type: "integer" format: "int32" description: "GB of Files Native Storage used on this day for files that have been deleted and are stored as backups." } id: { type: "integer" format: "int32" description: "ID of the usage record" } read_api_usage: { type: "integer" format: "int32" description: "Read API Calls used on this day. Note: only updated for days before the current day." } root_storage: { type: "integer" format: "int32" description: "GB of Files Native Storage used for the root folder. Included here because this value will not be part of `usage_by_top_level_dir`" } usage_by_top_level_dir: { type: "object" description: "Usage broken down by each top-level folder" } user_count: { type: "integer" format: "int32" description: "Number of billable users as of this day." } write_api_usage: { type: "integer" format: "int32" description: "Write API Calls used on this day. Note: only updated for days before the current day." } } } } }