---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://yandex.ru/dev/direct/doc/en/retargetinglists/delete.md
  - https://yandex.ru/dev/direct/doc/ru/retargetinglists/delete.md
sourcePath: en/ref-v5/retargetinglists/delete.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/dev/direct/doc/en/llms.txt

# delete

Deletes retargeting lists.

## Learn more

- [How the "delete" method works](https://yandex.com/dev/direct/doc/dg/best-practice/modify.html)
- [How to handle errors](https://yandex.com/dev/direct/doc/en/concepts/errors)


## Restrictions {#restrictions}

Maximum of 1000 retargeting lists per method call.


## Request {#input}

Request structure in JSON format:

```javascript
{
  "method": "delete",
  "params": { /* params */
    "SelectionCriteria": {  /* IdsCriteria */
      "Ids": [(long), ... ] /* required */
    } /* required */
  }
}
```


#|
||
**Parameter** 
|
**Type** 
|
**Description** 
|
**Required**
||

||
**params structure (for JSON) / DeleteRequest structure (for SOAP)**
||
||
`SelectionCriteria`
|
IdsCriteria
|
Criteria for selecting retargeting lists to delete.
|
Yes
||

||
**IdsCriteria structure**
||
||
`Ids`
|
array of long
|
IDs of retargeting lists to delete (maximum of 1000).
|
Yes
||
|# 


## Response {#output}

Response structure in JSON format:

```javascript
{
  "result": {  /* result */
    "DeleteResults": [{  /* ActionResult */
      "Id": (long),
      "Warnings": [{  /* ExceptionNotification */
        "Code": (int), /* required */
        "Message": (string), /* required */
        "Details": (string)
       }, ...
      ],
      "Errors": [{  /* ExceptionNotification */
        "Code": (int), /* required */
        "Message": (string), /* required */
        "Details": (string)
       }, ...
      ]
    }, ... ] /* required */
  }
}
```


#|
||
**Parameter** 
|
**Type** 
|
**Description** 
||

||
**result structure (for JSON) / DeleteResponse structure (for SOAP)**
||
||
`DeleteResults`
|
array of ActionResult
|
Results of deleting retargeting lists.
||

||
**ActionResult structure**
||
||
`Id`
|
long
|
ID of the deleted retargeting list. Returned if there aren't any errors. See the section [Operations on object arrays](https://yandex.com/dev/direct/doc/dg/best-practice/modify.html).
||
||
`Warnings`
|
array of [ExceptionNotification](https://yandex.com/dev/direct/doc/dg/best-practice/modify.html)
|
Warnings that occurred during the operation.
||
||
`Errors`
|
array of [ExceptionNotification](https://yandex.com/dev/direct/doc/dg/best-practice/modify.html)
|
Errors that occurred during the operation.
||
|# 

