action meraki_get_network_client_events { label: "Return the events associated with this client" description: "Return the events associated with this client. Clients can be identified by a client key or either the MAC or IP depending on whether the network uses Track-by-IP." provider: meraki method: GET path: "/networks/{networkId}/clients/{clientId}/events" encoding: json input: { type: "object" properties: { clientId: { type: "string" } endingBefore: { type: "string" } networkId: { type: "string" } perPage: { type: "integer" } startingAfter: { type: "string" } } required: ["clientId", "networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }