> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # DeleteFulfillmentMethod # Package: onlineOrders # Namespace: FulfillmentMethodsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/fulfillment-methods/delete-fulfillment-method.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Deletes a fulfillment method. --- ## REST API ### Schema ``` Method: deleteFulfillmentMethod Description: Deletes a fulfillment method. URL: https://www.wixapis.com/fulfillment-methods/v1/fulfillment-methods/{fulfillmentMethodId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: fulfillmentMethodId Method parameters: param name: fulfillmentMethodId | type: none | required: true Return type: DeleteFulfillmentMethodResponse EMPTY-OBJECT {} ``` ### Examples ### DeleteFulfillmentMethod ```curl ~~~cURL curl -X DELETE https://www.wixapis.com/restaurants/v1/fulfillment-methods/e827109b-0319-4955-aaaa-05a968dd285f \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: ' \ --data-raw '{ "fulfillment_method_id": "e827109b-0319-4955-aaaa-05a968dd285f" }' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.FulfillmentMethodsService.deleteFulfillmentMethod(fulfillmentMethodId) Description: Deletes a fulfillment method. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: fulfillmentMethodId Method parameters: param name: fulfillmentMethodId | type: string | description: The GUID of the fulfillment method to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteFulfillmentMethod ```javascript import { fulfillmentMethods } from '@wix/restaurants'; async function deleteFulfillmentMethod(fulfillmentMethodId) { const response = await fulfillmentMethods.deleteFulfillmentMethod(fulfillmentMethodId); }; ``` ### deleteFulfillmentMethod (with elevated permissions) ```javascript import { fulfillmentMethods } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myDeleteFulfillmentMethodMethod(fulfillmentMethodId) { const elevatedDeleteFulfillmentMethod = auth.elevate(fulfillmentMethods.deleteFulfillmentMethod); const response = await elevatedDeleteFulfillmentMethod(fulfillmentMethodId); } ``` ### deleteFulfillmentMethod (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { fulfillmentMethods } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { fulfillmentMethods }, // Include the auth strategy and host as relevant }); async function deleteFulfillmentMethod(fulfillmentMethodId) { const response = await myWixClient.fulfillmentMethods.deleteFulfillmentMethod(fulfillmentMethodId); }; ``` ---