mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 19:25:16 +00:00
11 lines
361 B
JavaScript
Executable File
11 lines
361 B
JavaScript
Executable File
const { EvchargersService } = require("m3o/evchargers");
|
|
|
|
// Retrieve reference data as used by this API and in conjunction with the Search endpoint
|
|
async function getReferenceData() {
|
|
let evchargersService = new EvchargersService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await evchargersService.referenceData({});
|
|
console.log(rsp);
|
|
}
|
|
|
|
getReferenceData();
|