Versions Compared
Version | Old Version 2 | New Version Current |
---|---|---|
Changes made by | ||
Saved on |
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.
API Documentation
Full API/Namespace documentation for this library is available on our website, https://apps.chhs.colostate.edu/docs/smartwaiver/api/index.html
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); |
Generate Auto Tag Link
To track a waiver against a specific ID in your App.
Code Block |
---|
string url = smartWaiver.GetAutoTaggedWaiverUrl("waiverId", "customerId"); |
Child pages (Children Display) |
---|
Table of Contents |
---|