> ## 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.

# base44 functions delete

> 1 つ以上のデプロイ済み関数を Base44 から削除します。

<Warning>
  このページは AI コーディングエージェントスキルの一部で、人間ではなくエージェント向けに書かれています。人間向けの Base44 ドキュメントは [デベロッパードキュメント](/developers) を参照してください。
</Warning>

# base44 functions delete

1 つ以上のデプロイ済み関数を Base44 から削除します。

## 構文

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

## 引数

| 引数           | 説明                              | 必須 |
| ------------ | ------------------------------- | -- |
| `<names...>` | 削除する 1 つ以上の関数名 (カンマ区切りの値も受け入れ可) | はい |

## 認証

**必須**: はい。認証されていない場合は、先にログインを求められます。

## 動作

1. 1 つ以上の関数名を引数として受け取ります
2. 各関数を Base44 のリモートから削除します
3. 各関数について成功、not-found、またはエラーを報告します

## 例

```bash theme={null}
# Delete a single function
npx base44 functions delete process-order

# Delete multiple functions (space-separated)
npx base44 functions delete process-order send-notification

# Delete multiple functions (comma-separated)
npx base44 functions delete process-order,send-notification
```

## 出力

単一関数:

```bash theme={null}
$ npx base44 functions delete process-order
◇ Deleting process-order...
✓ process-order deleted

└ Function "process-order" deleted
```

複数関数:

```bash theme={null}
$ npx base44 functions delete process-order send-notification
◇ Deleting process-order...
✓ process-order deleted
◇ Deleting send-notification...
✓ send-notification deleted

└ 2/2 deleted
```

## エラー処理

リモートに関数が見つからない場合:

```bash theme={null}
$ npx base44 functions delete nonexistent
✓ Function "nonexistent" not found
```

名前が指定されていない場合:

```bash theme={null}
$ npx base44 functions delete
error: At least one function name is required
```

## 注意事項

* このコマンドは Base44 から関数を削除します (リモートのみ); ローカルファイルは削除しません
* 関数を削除してリモート状態をクリーンアップするには、ローカルファイルを削除してから `npx base44 functions deploy --force` を使用します
* 見つからない関数はエラーを発生させずに報告されます (単一関数の場合は exit 0)
* カンマ区切りの名前がサポートされます: `delete func1,func2` は `delete func1 func2` と同等です

<Note>このページは AI を使用して翻訳されました。最も正確で最新の情報については、[英語版](/) を参照してください。 </Note>
