Skip to main content
This page is part of an AI coding agent skill and is written for agents, not humans. For the human-readable Base44 docs, see the developer documentation.

base44 functions delete

Delete one or more deployed functions from Base44.

Syntax

Arguments

Authentication

Required: Yes. If not authenticated, you’ll be prompted to login first.

What It Does

  1. Takes one or more function names as arguments
  2. Deletes each function from Base44 remotely
  3. Reports success, not-found, or error for each function

Examples

Output

Single function:
Multiple functions:

Error Handling

If a function is not found on remote:
If no names are provided:

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,func2 is equivalent to delete func1 func2