## Delete app `calls.sfu.delete(strapp_id, SFUDeleteParams**kwargs) -> SFUDeleteResponse` **delete** `/accounts/{account_id}/calls/apps/{app_id}` Deletes an app from Cloudflare Calls ### Parameters - `account_id: str` The account identifier tag. - `app_id: str` A Cloudflare-generated unique identifier for a item. ### Returns - `class SFUDeleteResponse: …` - `created: Optional[datetime]` The date and time the item was created. - `modified: Optional[datetime]` The date and time the item was last modified. - `name: Optional[str]` A short description of Calls app, not shown to end users. - `uid: Optional[str]` A Cloudflare-generated unique identifier for a item. ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) sfu = client.calls.sfu.delete( app_id="2a95132c15732412d22c1476fa83f27a", account_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(sfu.uid) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "created": "2014-01-02T02:20:00Z", "modified": "2014-01-02T02:20:00Z", "name": "production-realtime-app", "uid": "2a95132c15732412d22c1476fa83f27a" } } ```