fitssey-api
v1.1.1
Published
Fitssey API connection
Downloads
2
Readme
fitssey-api
Communication layer between your Node application and the Fitssey REST API
Usage
Initialize the class with your information.
const fitssey = new FitsseyApi({
uuid: 'store-name',
key: '**************',
guid: '******-****-****-****-***********',
source: 'store-name',
})
Make a request to the API
fitssey.get( 'member/all' ).then( res => {
console.log( res )
} ).catch( err => {
console.log( err )
} )