base44 functions delete
Delete one or more deployed functions from Base44.Syntax
Arguments
| Argument | Description | Required |
|---|---|---|
<names...> | One or more function names to delete (comma-separated values also accepted) | Yes |
Authentication
Required: Yes. If not authenticated, you’ll be prompted to login first.What It Does
- Takes one or more function names as arguments
- Deletes each function from Base44 remotely
- Reports success, not-found, or error for each function
Examples
Output
Single function:Error Handling
If a function is not found on remote:Notes
- This command deletes functions from Base44 (remote only); it does not remove local files
- To remove a function and clean up remote state, delete the local files then use
npx base44 functions deploy --force - Not-found functions are reported without raising an error (exit 0 for single-function case)
- Comma-separated names are supported:
delete func1,func2is equivalent todelete func1 func2

