@mindkey/recruiting-api-client
Version:
The MindKey API Client allows easy access to your MindKey Recruiting data.
27 lines (17 loc) • 606 B
Markdown
MindKey Recruiting API Client allows you to easily access your MindKey Recruiting data.
Please refer to the [documentation](https://developer.mindkey.com) for more information.
```bash
npm install @mindkey/recruiting-api-client
```
```javascript
const { VacancyClient } = require('@mindkey/recruiting-api-client');
async function main() {
const client = new VacancyClient('https://recruiting.mindkey.com/api');
const result = await client.getSimpleVacancyList('<insert-your-customer-id-here>', 'en-US');
console.log(result);
}
main();
```