action meraki_get_network_sm_device_command_logs { label: "Return historical records of commands sent to Systems Manager devices" description: "Return historical records of commands sent to Systems Manager devices. Note that this will include the name of the Dashboard user who initiated the command if it was generated by a Dashboard admin rather than the automatic behavior of the system; you may wish to filter this out of any reports." provider: meraki method: GET path: "/networks/{network_id}/sm/{id}/deviceCommandLogs" encoding: json input: { type: "object" properties: { endingBefore: { type: "string" } id: { type: "string" } network_id: { type: "string" } perPage: { type: "integer" } startingAfter: { type: "string" } } required: ["id", "network_id"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }