action meraki_get_network_sm_users { label: "List the owners in an SM network with various specified fields and filters" description: "List the owners in an SM network with various specified fields and filters" provider: meraki method: GET path: "/networks/{networkId}/sm/users" encoding: json input: { type: "object" properties: { emails: { type: "string" } ids: { type: "string" } networkId: { type: "string" } scope: { type: "string" } usernames: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }