@plasma-platform/tm-service-delivery
v1.1.3
Published
Delivery Service API
Downloads
7
Readme
Documentation
Table of Contents
DeliveryService
messages
object with class service messages
getDeliveriesByOrderId
Get deliveries by order id
Parameters
Examples
(async () => {
const service = new DeliveryService(url, token);
const request = await service.getDeliveriesByOrderId(params);
})();
Returns Promise<any>
getDeliveryByProductId
DeliveryService - Get delivery by order and product ID
Parameters
Examples
(async () => {
const service = new DeliveryService(url, token);
const request = await service.getDeliveryByProductId(params);
})();
Returns Promise<any>