action digitalocean_apps_get_metrics_bandwidth_daily { label: "Retrieve App Daily Bandwidth Metrics" description: "Retrieve daily bandwidth usage metrics for a single app." provider: digitalocean method: GET path: "/v2/apps/{app_id}/metrics/bandwidth_daily" encoding: json input: { type: "object" properties: { app_id: { type: "string" } date: { type: "string" format: "date-time" } } required: ["app_id"] additionalProperties: false } output: { type: "object" properties: { app_bandwidth_usage: { type: "array" description: "A list of bandwidth usage details by app." items: { type: "object" description: "Bandwidth usage for an app." properties: { app_id: { type: "string" description: "The ID of the app." } bandwidth_bytes: { type: "string" format: "uint64" description: "The used bandwidth amount in bytes." } } } } date: { type: "string" format: "date-time" description: "The date for the metrics data." } } } }