SmartWaiver.Net is a SDK for the Smart Waiver electronic waiver platform.
Specifically, this library allows you
to fetch data on signed waivers and create auto
tagged links for waivers.
Setup the waiver object
ISmartWaiver smartWaiver = new SmartWaiver("apikey");
Gets the waiver without the PDF.
SignedWaiver waiver = smartWaiver.GetSignedWaiver("waiverid", false);
Get the waiver with a PDF
SignedWaiver waiver = smartWaiver.GetSignedWaiver("waiverId", true);
To track a waiver against a specific ID in your App.
string url = smartWaiver.GetAutoTaggedWaiverUrl("waiverId", "customerId");