Hey guys, I am currently working on integrating clover into my nodeJS App, and I have a couple of questions. I really don't see any documentation on a NodeJS SDK, which would be huge if there was one! I mainly need a way to query merchant information, as well as employee information.
In the platform API section. For example, in https://docs.clover.com/reference/employeegetemployees we see the following code snippet from nodejs
const sdk = require('api')('@clover-platform/v3#1b6pqz4pl43cxxh7');
sdk['employee.GetEmployees']({
mId: 'mId'})
.then(res => console.log(res))
.catch(err => console.error(err));
Do you guys know if this SDK is deprecated? Or should I just hit the REST API endpoints to request the data? Or does a secret nodeJS SDK exist that I am not aware of?
If anyone else has been in my same position, could you guys please share some recommendations as to what I should do?
Thanks!