node-tripletex
Node Tripletex SDK for easy Tripletex integration in Node.JS. Generic Tripletex Node integration with specific support for the Crystallize headless ecommerce serce.
Crystallize enables you to build your next-gen e-commerce business by the help of Fast GraphQL API Service backed by super structured Product Information Management (PIM)
You can view the required body models documented in Tripletex documentation
Install
yarn add @crystallize/node-tripletex
Usage
const client = new TripletexClient({
testDrive: true,
consumerToken: "MY_TRIPLETEX_CONSUMER_TOKEN",
employeeToken: "MY_TRIPLETEX_EMPOLOYEE_TOKEN"
});
await client.getAccessToken();
await client.getInventories();
await client.getVatTypes();
await client.createOrder(cartData);
await client.createOrderLine(orderLineData);
await client.createCustomer(customerData);