action meraki_get_network_splash_login_attempts { label: "List the splash login attempts for a network" description: "List the splash login attempts for a network" provider: meraki method: GET path: "/networks/{networkId}/splashLoginAttempts" encoding: json input: { type: "object" properties: { loginIdentifier: { type: "string" } networkId: { type: "string" } ssidNumber: { type: "integer" enum: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] } timespan: { type: "integer" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }