BoxLang 🚀 A New JVM Dynamic Language Learn More...
A CFML wrapper for the SimplyConvert API. A wrapper for the SimplyConvert API for building integrations with their legal tech platform
This is an early stage API wrapper and does not yet cover the full SimplyConvert API. Feel free to use the issue tracker to report bugs or suggest improvements!
This project borrows heavily from the API frameworks built by jcberquist. Thanks to John for all the inspiration!
SimplyConvertCFC
Reference Manualhelpers.simplyCase
The following is a minimal example of doing something helpful.
The following is a quick example of listing the cases in your account.
simplyconvert = new path.to.simplyconvertcfc.simplyconvert( apiKey = 'xxx' );
cases = simplyconvert.listCases();
writeDump( var='#cases.data#' );
To get started with the SimplyConvert API, you'll need an API Key which you can copy from the dashboard's Integration Settings page.
Once you have this, you can provide it to this wrapper manually when creating the component, as in the Quick Start example above, or via an environment variable named SIMPLYCONVERT_API_KEY
, which will get picked up automatically. This latter approach is generally preferable, as it keeps hardcoded credentials out of your codebase.
A full reference manual for all public methods in simplyconvert.cfc
can be found in the docs
directory, here.
helpers.simplyCase
The reference manual for all public methods in helpers/simplyCase.cfc
can be found in the docs
directory, in simplyCase.md
.
$
box install simplyconvertcfc