action meraki_get_network_sm_user_softwares { label: "Get a list of softwares associated with a user" description: "Get a list of softwares associated with a user" provider: meraki method: GET path: "/networks/{networkId}/sm/user/{userId}/softwares" encoding: json input: { type: "object" properties: { networkId: { type: "string" } userId: { type: "string" } } required: ["networkId", "userId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }