> 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 # DeleteFunctionActivation # Package: functions # Namespace: FunctionActivations # Method link: https://dev.wix.com/docs/api-reference/business-management/functions/function-activations/delete-function-activation.md ## Permission Scopes: Manage Functions: SCOPE.DC-FUNCTIONS.MANAGE-FUNCTIONS ## Introduction Deletes a function activation. This deactivates the function whose ID is specified. The function's activation status is set to `"INACTIVE"`. --- ## REST API ### Schema ``` Method: deleteFunctionActivation Description: Deletes a function activation. This deactivates the function whose GUID is specified. The function's activation status is set to `"INACTIVE"`. URL: https://www.wixapis.com/functions/v1/function-activations/{functionId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: functionId Method parameters: param name: functionId | type: none | required: true Return type: DeleteFunctionActivationResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Function Activation ```curl curl -X DELETE \ https://www.wixapis.com/functions/v1/activations/0481a48d-0dff-40a9-abd1-6267a3355e70 \ -H "Authorization: " \ -H "Content-Type:application/json" ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.functions.FunctionActivations.deleteFunctionActivation(functionId) Description: Deletes a function activation. This deactivates the function whose GUID is specified. The function's activation status is set to `"INACTIVE"`. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: functionId Method parameters: param name: functionId | type: string | description: GUID of the function to deactivate. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteFunctionActivation ```javascript import { functionActivations } from '@wix/functions'; async function deleteFunctionActivation(functionId) { const response = await functionActivations.deleteFunctionActivation(functionId); }; ``` ### deleteFunctionActivation (with elevated permissions) ```javascript import { functionActivations } from '@wix/functions'; import { auth } from '@wix/essentials'; async function myDeleteFunctionActivationMethod(functionId) { const elevatedDeleteFunctionActivation = auth.elevate(functionActivations.deleteFunctionActivation); const response = await elevatedDeleteFunctionActivation(functionId); } ``` ### deleteFunctionActivation (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 { functionActivations } from '@wix/functions'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { functionActivations }, // Include the auth strategy and host as relevant }); async function deleteFunctionActivation(functionId) { const response = await myWixClient.functionActivations.deleteFunctionActivation(functionId); }; ``` ---