# Courier Details For Return

## Get courier Details for return

<mark style="color:blue;">`GET`</mark> `https://wms.eshopbox.com/api/get-return-courier/:customerReturnNumber`

This endpoint allows you to get courier details.

#### Path Parameters

| Name                 | Type   | Description                             |
| -------------------- | ------ | --------------------------------------- |
| customerReturnNumber | string | customer return number against an order |

#### Headers

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

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

```
{
  "courierName": "Delhivery Reverse",
  "awb": "1704610036610"
}
```

{% endtab %}
{% endtabs %}

```
curl --location --request GET 'https://wms.eshopbox.com/api/get-return-courier/R2113455' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ' \
--header 'ProxyHost: kapasKraft'
```
