[comment]: # translation:outdated

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

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

[comment]: # ({41cde63c-41cde63c})
### Description

`object correlation.delete(array correlationids)`

This method allows to delete correlations.

[comment]: # ({/41cde63c-41cde63c})

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

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

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

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

`(object)` Returns an object containing the IDs of the deleted
correlations under the `correlationids` property.

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

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

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

[comment]: # ({bfc49991-bfc49991})
#### Delete multiple correlations

Delete two correlations.

Request:

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

Response:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": {
        "correlaionids": [
            "1",
            "2"
        ]
    },
    "id": 1
}
```

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

[comment]: # ({6c7b74da-6c7b74da})
### Source

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

[comment]: # ({/6c7b74da-6c7b74da})
