Get Reject Reasons

Get list of reasons to reject the order.

POST {{apiUrl}}fulfillment/orders/reject_reasons

Request Body

Name
Type
Description

apikey*

String

Authentication token

reason_source*

String

"pickup" | "delivery"

pass order is pickup or delivery.

{
    "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"
            }
        ]
    }
}

Last updated

Was this helpful?