lscs-core
v1.0.1
Published
This library enables users to utilize the LSCS Core API in NodeJS hassle free.
Readme
lscs-core
This library enables users to utilize the LSCS Core API in NodeJS hassle free.
Usage
// Initializing an lscs-core instance
import lscscore from 'lscs-core'
const lscs = new lscscore(process.env.LSCS_AUTH_KEY)
const userData = await lscs.findMemberByEmail('[email protected]')
console.log(userData)
const userData2 = await lscs.findMemberById('[email protected]')
console.log(userData2)
const committees = await lscs.getCommittees()
console.log(committees)