listFulfillmentsForMultipleOrders( )


Retrieves fulfillments associated with multiple specified orders.

The listFulfillmentsForMultipleOrders() function returns a Promise that resolves when the fulfillments are retrieved.

Permissions
Manage eCommerce - all permissions
Read eCommerce - all read permissions
Manage Stores - all permissions
Read Stores - all read permissions
Manage Orders
Read Orders
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function listFulfillmentsForMultipleOrders(
  orderIds: Array<string>,
): Promise<ListFulfillmentsForMultipleOrdersResponse>;
Method Parameters
orderIdsArray<string>Required

List of order IDs for which to retrieve fulfillments.

Returns
Return Type:Promise<ListFulfillmentsForMultipleOrdersResponse>
JavaScript
import { orderFulfillments } from "@wix/ecom"; async function listFulfillmentsForMultipleOrders(orderIds) { const response = await orderFulfillments.listFulfillmentsForMultipleOrders(orderIds); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?