API para integrações
import Tray from '@tray-tecnologia/cli';
const api = new Tray({
token: 'SEU-TOKEN-AQUI',
themeId: 1, // Id do meu tema
debug: false,
});
api.configure()
.then((success) => console.log(success))
.catch((error) => console.error(error));Last updated