action files_get_remote_bandwidth_snapshots { label: "List Remote Bandwidth Snapshots" description: "List Remote Bandwidth Snapshots" provider: files method: GET path: "/remote_bandwidth_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 Remote Bandwidth Snapshots" properties: { id: { type: "integer" format: "int32" description: "Site bandwidth ID" } logged_at: { type: "string" format: "date-time" description: "Time the site bandwidth report was logged" } remote_server_id: { type: "integer" format: "int32" description: "ID of related Remote Server" } sync_bytes_received: { type: "number" format: "double" description: "Site sync bandwidth report bytes received" } sync_bytes_sent: { type: "number" format: "double" description: "Site sync bandwidth report bytes sent" } } } } }