action meraki_get_network_vlan { label: "Return a VLAN" description: "Return a VLAN" provider: meraki method: GET path: "/networks/{networkId}/vlans/{vlanId}" encoding: json input: { type: "object" properties: { networkId: { type: "string" } vlanId: { type: "string" } } required: ["networkId", "vlanId"] additionalProperties: false } output: { type: "object" } }