> For the complete documentation index, see [llms.txt](https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/api-endpoints/orders/status-with-date-range.md).

# Status With Date Range

Get Order

## Endpoint => /orders/statsWithDateRange

<mark style="color:green;">`POST`</mark> `/orders/statsWithDateRange`

#### Headers

| Name                                             | Type   | Description       |
| ------------------------------------------------ | ------ | ----------------- |
| Authorization <mark style="color:red;">\*</mark> | String | Your Bearer Token |
| secret-key<mark style="color:red;">\*</mark>     | String | Your Secret Key   |

#### Request Body

| Name                                        | Type   | Description                    |
| ------------------------------------------- | ------ | ------------------------------ |
| startDate<mark style="color:red;">\*</mark> | String | Start of the search date range |
| endDate                                     | String | End of the search date range   |

{% tabs %}
{% tab title="200 Success" %}

```json
{
  "status": "Success",
  "description": "Details Fetched Successfully",
  "orderDetails": [
    {
      "orderNo": "JHAZ27012319",
      "recipientName": "Femi2",
      "recipientEmail": "",
      "recipientAddress": "Idumota3",
      "recipientPhone": "08000000000000",
      "orderStatus": "Pending Pick-Up",
      "statusDescription": null,
      "cost": "900",
      "createdBy": "C-39006-611",
      "OrgRep": "G-ylNt-c7xD",
      "pickUpDate": "0000-00-00 00:00:00",
      "dispatchDate": null,
      "deliveryDate": null,
      "returnDate": null,
      "dropZoneName": null,
      "returnReason": n
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
```

{% endtab %}
{% endtabs %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/orders/statsWithDateRange',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "startDate":"2019-02-17",
    "endDate":"2022-11-28"
}',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```
