fix: use query param for delete method (#30206)

This commit is contained in:
Xiyuan Chen 2025-12-26 00:34:35 -08:00 committed by GareArc
parent 0c4233e7df
commit 70571b53ad
No known key found for this signature in database

View File

@ -110,5 +110,5 @@ class EnterpriseService:
if not app_id:
raise ValueError("app_id must be provided.")
body = {"appId": app_id}
EnterpriseRequest.send_request("DELETE", "/webapp/clean", json=body)
params = {"appId": app_id}
EnterpriseRequest.send_request("DELETE", "/webapp/clean", params=params)