action meraki_get_network_sm_target_groups { label: "List the target groups in this network" description: "List the target groups in this network" provider: meraki method: GET path: "/networks/{networkId}/sm/targetGroups" encoding: json input: { type: "object" properties: { networkId: { type: "string" } withDetails: { type: "boolean" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }