> For the complete documentation index, see [llms.txt](https://fincart.gitbook.io/fincart-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fincart.gitbook.io/fincart-api/apis/get-order-needing-reprint.md).

# Get Orders Needing Label Reprint

## Get Orders

<mark style="color:yellow;">`POST`</mark> `/v4/orders/`

This endpoint retrieves a list of orders that require label reprinting. These may include orders with missing, invalid, or previously failed label prints. It helps ensure that all shipments have valid labels before fulfillment or pickup.

<details>

<summary>Base URL</summary>

[https://api.fincart.io](https://api.fincart.io/)

</details>

**Headers**

| Name          | Value                                                                             |
| ------------- | --------------------------------------------------------------------------------- |
| Content-Type  | `application/json`                                                                |
| Authorization | [<mark style="color:blue;">`<token>`</mark>](/fincart-api/access/access-token.md) |

**Body**

```json
{
    "filters": {
        "status": "pending",
        "subStatus": "new",
        "needReprint": true
    }
}
```

**Response**

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

```json
{
    "statusCode": 200,
    "message": "Get Merchant Orders",
    "data": {
        "orders": [
            {
                "id": "6872baad2922edb3c4b2fe5a",
                ....
            },
            {
                "id": "68724b3f1bed7898e98a58e4",
                ....
            }
        ],
        "count": 2
    }
}
```

{% endtab %}

{% tab title="403" %}

```json
{
    "statusCode": 403,
    "timestamp": "2025-07-16T15:15:44.505Z",
    "path": "/v4/orders/6864fecda075914a1b1e353c/logs",
    "message": "User is not authorized",
    "errors": [
        "User is not authorized"
    ]
}
```

{% endtab %}

{% tab title="404" %}

```json
{
    "statusCode": 404,
    "timestamp": "2025-07-16T15:15:10.673Z",
    "path": "/v4/orders/6864fecda075914a1b1e353c/logs",
    "message": "No logs found for the provided Order ID.",
    "errors": [
        "No logs found for the provided Order ID."
    ]
}
```

{% endtab %}
{% endtabs %}
