This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves a list of up to 100 fulfillment methods.
function listFulfillmentMethods(
options: ListFulfillmentMethodsOptions,
): Promise<ListFulfillmentMethodsResponse>;
Options for listing the fulfillment methods.
import { fulfillmentMethods } from "wix-restaurants.v2";
async function listFulfillmentMethods(options) {
try {
const result = await fulfillmentMethods.listFulfillmentMethods(options);
return result;
} catch (error) {
console.error(error);
// Handle the error
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.