[comment]: # ({4bdd1418-4bdd1418})
# application.delete

[comment]: # ({/4bdd1418-4bdd1418})

[comment]: # ({b14d4c56-b14d4c56})
### Description

`object application.delete(array applicationIds)`

This method allows to delete applications.

[comment]: # ({/b14d4c56-b14d4c56})

[comment]: # ({fcfd9d19-fcfd9d19})
### Parameters

`(array)` IDs of the applications to delete.

[comment]: # ({/fcfd9d19-fcfd9d19})

[comment]: # ({e711f74d-e711f74d})
### Return values

`(object)` Returns an object containing the IDs of the deleted
applications under the `applicationids` property.

[comment]: # ({/e711f74d-e711f74d})

[comment]: # ({b41637d2-b41637d2})
### Examples

[comment]: # ({/b41637d2-b41637d2})

[comment]: # ({c1ef4a10-c1ef4a10})
#### Deleting multiple applications

Delete two applications.

Request:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "application.delete",
    "params": [
        "356",
        "358"
    ],
    "auth": "3a57200802b24cda67c4e4010b50c065",
    "id": 1
}
```

Response:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": {
        "applicationids": [
            "356",
            "358"
        ]
    },
    "id": 1
}
```

[comment]: # ({/c1ef4a10-c1ef4a10})

[comment]: # ({3c3877e9-3c3877e9})
### Source

CApplication::delete() in
*ui/include/classes/api/services/CApplication.php*.

[comment]: # ({/3c3877e9-3c3877e9})
