Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 3 Current »

Overview

This package is available on Nuget at https://www.nuget.org/packages/SmartWaiver.Net

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.

Basic Usage

Setup the waiver object

ISmartWaiver smartWaiver = new SmartWaiver("apikey");

Get Details About a Signed Waiver

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");

  • No labels