Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
ISmartWaiver smartWaiver = new SmartWaiver("apikey");

Get Details About a Signed Waiver

Gets the waiver without the PDF.

Code Block
SignedWaiver waiver = smartWaiver.GetSignedWaiver("waiverid", false);

Get the waiver with a PDF

Code Block
SignedWaiver waiver = smartWaiver.GetSignedWaiver("waiverId", true);

To track a waiver against a specific ID in your App.

Code Block
string url = smartWaiver.GetAutoTaggedWaiverUrl("waiverId", "customerId");

Child pages (Children Display)