---
metadata:
  - name: generator
    content: Diplodoc Platform v5.55.0
alternate:
  - https://yandex.com/dev/direct/doc/en/bidmodifiers/delete.md
  - https://yandex.com/dev/direct/doc/ru/bidmodifiers/delete.md
  - href: en/bidmodifiers/delete.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
sourcePath: en/ref-v5/bidmodifiers/delete.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com/dev/direct/doc/en/llms.txt

# delete

Deletes bid adjustments.

### Learn more {#see-also}

- [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 adjustments 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 adjustments to delete.  | Yes ||

|| **IdsCriteria structure** | > | > | > ||

|| `Ids` | array of long | IDs of adjustments to delete (maximum of 1000).  | Yes ||
|# 


## Response {#output}

Response structure in JSON format:

```javascript
{
  "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)
      }, ... ]
    }, ... ]
  }
}
```

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

|| **result structure (for JSON) / DeleteResponse structure (for SOAP)** | > | > ||

|| `DeleteResults` | array of ActionResult | Results of deleting bid adjustments.  ||

|| **ActionResult structure** | > | > ||

|| `Id` | long | ID of the deleted bid adjustment. 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 | Warnings that occurred during the operation.  ||

|| `Errors` | array of ExceptionNotification | Errors that occurred during the operation.  ||
|# 

