[comment]: # ({89029829-89029829})
# correlation.delete

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

[comment]: # ({4922e104-4922e104})
### Description

`object correlation.delete(array correlationids)`

This method allows to delete correlations.

::: noteclassic
This method is only available to *Super admin* user type.
Permissions to call the method can be revoked in user role settings. See
[User
roles](/manual/web_interface/frontend_sections/administration/user_roles)
for more information.
:::

[comment]: # ({/4922e104-4922e104})

[comment]: # ({b445698c-b445698c})
### Paraméterek

"(tömb)" A törlendő korrelációk azonosítói.

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

[comment]: # ({855af217-855af217})
### Visszatérési értékek

`(object)` Egy objektumot ad vissza, amely tartalmazza a törölt objektumok azonosítóit
korrelációk a `correlationids` tulajdonság alatt.

[comment]: # ({/855af217-855af217})

[comment]: # ({c9f65268-c9f65268})
### Példa

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

[comment]: # ({9ff74fb9-bfc49991})
#### Több összefüggés törlése

Töröljön ki két összefüggést.

Kérés:

``` json
{
    "jsonrpc": "2.0",
    "method": "correlation.delete",
    "params": [
        "1",
        "2"
    ],
    "auth": "343baad4f88b4106b9b5961e77437688",
    "id": 1
}
```

Válasz:

``` json
{
    "jsonrpc": "2.0",
    "result": {
        "correlationids": [
            "1",
            "2"
        ]
    },
    "id": 1
}
```

[comment]: # ({/9ff74fb9-bfc49991})

[comment]: # ({b0713c0f-b0713c0f})
### Forrás

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

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