> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usedora.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Multiple Delivery

### 📝 Summary

This endpoint allows users to retrieve the details of a multiple deliveries by providing the unique delivery ID. It returns all relevant information related to the delivery, including the delivery status, sender and recipient details, assigned driver, and vehicle information.

***

### Requests

##### Example

<Expandable>
  ```json theme={null}
  delivery_uuid: {{delivery_uuid}}
  ```
</Expandable>

##### Body

<Expandable>
  **Description:**

  | Name              | Location | Type   | Required | Description |
  | ----------------- | -------- | ------ | -------- | ----------- |
  | `body`            | body     | object | no       | none        |
  | `delivery_uuid[]` | body     | string | yes      | none        |
</Expandable>

### Responses

| HTTP Status Code                 | Meaning                                                          | Description | Data schema |
| -------------------------------- | ---------------------------------------------------------------- | ----------- | ----------- |
| <Badge color="green">200</Badge> | [OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)          | none        | Inline      |
| <Badge color="red">422</Badge>   | [Bad Request](https://tools.ietf.org/html/rfc7231#section-6.3.1) | none        | Inline      |

<ResponseExample>
  ```json sample response theme={null}
  {
  "status": "success",
  "message": "Deliveries deleted."
  }
  ```
</ResponseExample>
