action meraki_get_network_sm_target_group { label: "Return a target group" description: "Return a target group" provider: meraki method: GET path: "/networks/{networkId}/sm/targetGroups/{targetGroupId}" encoding: json input: { type: "object" properties: { networkId: { type: "string" } targetGroupId: { type: "string" } withDetails: { type: "boolean" } } required: ["networkId", "targetGroupId"] additionalProperties: false } output: { type: "object" } }