Modules are the building blocks of Tracker - each one designed to serve a specific function in your business.
Learn about our platform and what it offers
Track My Business is a comprehensive business management platform designed specifically for print shops, embroidery businesses, and other decorating companies.
This documentation will help you understand how to use our platform effectively, how to integrate with our APIs, and how to get the most out of our features.
This documentation is designed for:
Throughout this documentation, you'll learn:
// Initialize the Track My Business client
const tmb = new TrackMyBusiness({
apiKey: "your-api-key"
});
// Fetch all orders
tmb.orders.list()
.then(orders => {
console.log(`You have ${orders.length} orders`);
})
.catch(error => {
console.error("Error fetching orders:", error);
});