> For the complete documentation index, see [llms.txt](https://eshop.gitbook.io/eshopbox-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eshop.gitbook.io/eshopbox-developers/order/order-status/get-awb-and-courier-name.md).

# Get Awb And Courier Name

## Get Awb And Courier Name

<mark style="color:blue;">`GET`</mark> `https://wms.eshopbox.com/api/unicommerce/courierDetails`

This endpoint allows you to get courier details.

#### Query Parameters

| Name         | Type   | Description                          |
| ------------ | ------ | ------------------------------------ |
| orderItemIds | string | unique generated item id by eshopbox |

#### Headers

| Name           | Type   | Description                                     |
| -------------- | ------ | ----------------------------------------------- |
| Authentication | string | The Bearer token which grants access to the API |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
  "courierName": "ecomExpress",
  "awb": "1704610036610"
}
```

{% endtab %}
{% endtabs %}

```
curl --location --request GET 'https://wms.eshopbox.com/api/unicommerce/courierDetails?orderItemIds=408-3131237-0000110-67%2C408-3131237-0000110-68' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ACCESS_TOKEN'
```
