Our API allows developers to integrate with Listrak's application. It enables the seamless automation of a broad set of functionality, ranging from basic tasks to complex processes.
const Listrak = require('@mediocre/listrak');
const listrak = new Listrak({
client_id: 'your_api_key',
client_secret: 'your_api_secret'
});
Authentication is accomplished using OAuth 2.0.
https://api.listrak.com/email#section/Authentication
Example
listrak.getAccessToken(function(err, accessToken) {
console.log(accessToken);
});