@cityssm/consigno-cloud-api
Version:
An unofficial wrapper around the ConsignO Cloud API.
54 lines (35 loc) ⢠2.01 kB
Markdown
[](https://app.deepsource.com/gh/cityssm/node-consigno-cloud-api/)
[](https://sonarcloud.io/summary/new_code?id=cityssm_node-consigno-cloud-api)
**An unofficial wrapper around the [ConsignO Cloud](https://consignocloud.com/) API.**
_Note that this project is not endorsed by Notarius._
š” See the [ConsignO Cloud Basic API Documentation](https://support.notarius.com/wp-content/uploads/api/consigno-cloud-api-en.html) for more information.
```bash
npm install @cityssm/consigno-cloud-api
```
```javascript
import { ConsignoCloudAPI } from '@cityssm/consigno-cloud-api'
const api = new ConsignoCloudAPI({
baseUrl: 'https://consigno.example.com/api/v1',
apiKey: 't0p-secr3t-k3y',
apiSecret: 'sup3r-secr3t-s3cret'
})
// Optionally impersonate a user
api.setLoginAs('clerk', '3rd-p@rty-app-p@ssw0rd')
// Get a workflow
const workflowData = await api.getWorkflow('workflowABC')
```
š” Using this package in a Typescript environment is encouraged to help with complex function parameters.
- `getWorkflow(workflowId)`
- `createWorkflow(workflowDefinition)`
- `downloadDocuments(workflowId)`
- `downloadAuditTrail(workflowId)`
**[PDF Puppeteer](https://www.npmjs.com/package/@cityssm/pdf-puppeteer)**<br />
Converts URLs and HTML to PDFs using Puppeteer.
**[Sunrise Cemetery Management System (CMS)](https://github.com/cityssm/sunrise-cms)**<br />
A completely free, open source, web-based application to assist cemetery managers with managing their cemetery records.
š” Discover even more on [the City of Sault Ste. Marie's GitHub page](https://cityssm.github.io/).