Skip to main content
Skip to main content

retrieve - Order Module Reference

This documentation provides a reference to the retrieve method. This belongs to the Order Module.

This method retrieves a {return type} by its ID.

Example

const result = await orderModuleService.retrieve("orderId123");

Parameters

orderIdstringRequired
The order's ID.
The configurations determining how the order is retrieved. Its properties, such as select or relations, accept the attributes or relations associated with a order.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<OrderDTO>Required
The retrieved {return type}(s).
Was this section helpful?