> For the complete documentation index, see [llms.txt](https://docs.evitalrx.in/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.evitalrx.in/api-for-fulfillment-portal/orders/get-reject-reasons.md).

# Get Reject Reasons

<mark style="color:green;">`POST`</mark> [`{{apiUrl}}fulfillment/orders/reject_reasons`](https://ews-staging-api-product.portal-evital.com/v1/fulfillment/orders/reject_reasons)

#### Request Body

| Name                                             | Type   | Description          |                                                               |
| ------------------------------------------------ | ------ | -------------------- | ------------------------------------------------------------- |
| apikey<mark style="color:red;">\*</mark>         | String | Authentication token |                                                               |
| reason\_source<mark style="color:red;">\*</mark> | String | <p>"pickup"          | "delivery"</p><p></p><p>pass order is pickup or delivery.</p> |

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

```json
{
    "status_code": "1",
    "status_message": "Success",
    "datetime": "2025-05-02 16:05:50",
    "version": "1.1.118",
    "data": {
        "reasons": [
            {
                "id": 13,
                "reason": "Wrong medicines order"
            },
            {
                "id": 14,
                "reason": "Order placed on wrong address"
            },
            {
                "id": 15,
                "reason": "No response in order"
            },
            {
                "id": 12,
                "reason": "Discount is less"
            },
            {
                "id": 16,
                "reason": "By mistake place an order"
            },
            {
                "id": 17,
                "reason": "Other"
            }
        ]
    }
}
```

{% endtab %}

{% tab title="200: OK Validation Error" %}

```json
{
    "status_code": "0",
    "status_message": "reason_source must be one of [pickup, delivery]",
    "datetime": "2023-03-21 17:19:21",
    "data": null
}
```

{% endtab %}
{% endtabs %}
