> For the complete documentation index, see [llms.txt](https://mipos.gitbook.io/public-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mipos.gitbook.io/public-api/delivery-orders/order-creation-failed.md).

# Order Creation failed

Once the order is received, if it failed to be saved in your system, a response is required through the following endpoint, to report this to the delivery platform.

## Order Deny

<mark style="color:green;">`POST`</mark> `https://integrations.mipos.shop/api/v1/integration/order/deny`

#### Headers

| Name          | Type   | Description            |
| ------------- | ------ | ---------------------- |
| Authorization | string | Bearer {access\_token} |
| Content-Type  | string | application/json       |

#### Request Body

| Name                | Type   | Description                         |
| ------------------- | ------ | ----------------------------------- |
| delivery\_id        | string | Id delivery in the platform         |
| store\_id           | string | Id store in the platform            |
| order\_external\_id | string | Order external\_id sent in the json |
| message             | string | Reason for rejection of the order   |

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

```javascript
{
    "message": [
        "Operation completed successfully"
    ],
    "data": null
}
```

{% endtab %}

{% tab title="401 " %}

```
"Unauthorized."
```

{% endtab %}

{% tab title="409 " %}

```javascript
{
    "message": [
        "User not authenticated.",
        "User not found.",
        "You don't have this store available.",
        "Order not found.",
        "Microservice does not have this integration configured.",
        "Unable to get token.",
        "Error sending the rejection to the delivery platform"
    ],
    "data": null
}
```

{% endtab %}

{% tab title="422 " %}

```javascript
{
    "delivery_id": [
        "The delivery id field is required."
    ],
    "store_id": [
        "The store id field is required.",
    ],
    "order_external_id": [
        "The order external id field is required."
    ],
    "message": [
        "The message field is required."
    ]
}
```

{% endtab %}
{% endtabs %}
