action meraki_get_network_client_splash_authorization_status { label: "Return the splash authorization for a client, for each SSID they've associated with through splash" description: "Return the splash authorization for a client, for each SSID they've associated with through splash. Only enabled SSIDs with Click-through splash enabled will be included. 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}/splashAuthorizationStatus" encoding: json input: { type: "object" properties: { clientId: { type: "string" } networkId: { type: "string" } } required: ["clientId", "networkId"] additionalProperties: false } output: { type: "object" } }