> ## 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.

# Move to in Delivered

### 📝 Summary

This endpoint allows users to retrieve the details of a specific delivery 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[0]": "{{delivery_uuid}}"

  ```
</Expandable>

##### Params

<Expandable>
  | Name               | Location | Type   | Required | Description |
  | ------------------ | -------- | ------ | -------- | ----------- |
  | body               | body     | object | no       | none        |
  | `delivery_uuid[0]` | 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": "Delivery status updated, notifications sent."
  }
  ```
</ResponseExample>
