action meraki_get_network_camera_schedules { label: "Returns a list of all camera recording schedules." description: "Returns a list of all camera recording schedules." provider: meraki method: GET path: "/networks/{networkId}/camera/schedules" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }