> ## Documentation Index
> Fetch the complete documentation index at: https://docs.base44.com/llms.txt
> Use this file to discover all available pages before exploring further.

# functions delete

> Delete one or more deployed backend functions

Delete deployed [backend functions](/developers/backend/resources/backend-functions/overview) from Base44. This removes the remote deployment only. Local function files in your project are not affected. You can delete a single function or multiple functions at once.

<Warning>
  Deleting a function removes it from Base44. Any endpoints, SDK calls, or automations that depend on this function will stop working.
</Warning>

## Usage

```bash theme={null}
base44 functions delete <names...>
```

## Arguments

| Argument  | Description                                               | Required |
| --------- | --------------------------------------------------------- | -------- |
| `<names>` | One or more function names, separated by spaces or commas | Yes      |

## See also

* [Backend Functions](/developers/backend/resources/backend-functions/overview): Learn about backend functions
* [`functions deploy`](/developers/references/cli/commands/functions-deploy): Deploy local functions to Base44
* [`functions list`](/developers/references/cli/commands/functions-list): List all deployed functions
* [`functions pull`](/developers/references/cli/commands/functions-pull): Download deployed functions to your local project
