action meraki_get_network_client { label: "Return the client associated with the given identifier" description: "Return the client associated with the given identifier. 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}" encoding: json input: { type: "object" properties: { clientId: { type: "string" } networkId: { type: "string" } } required: ["clientId", "networkId"] additionalProperties: false } output: { type: "object" } }