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