Deliveroo · JSON Structure

Picking Api Reject Order Structure

Request body for rejecting a picking order.

Type: object Properties: 1 Required: 1
Food DeliveryGroceryMarketplaceLogisticsRestaurants

RejectOrder is a JSON Structure definition published by Deliveroo, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

reject_reason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-structure/picking-api-reject-order-structure.json",
  "name": "RejectOrder",
  "description": "Request body for rejecting a picking order.",
  "type": "object",
  "properties": {
    "reject_reason": {
      "type": "string",
      "enum": [
        "INGREDIENT_UNAVAILABLE",
        "CLOSING_EARLY",
        "BUSY",
        "OTHER"
      ],
      "description": "The reason for rejecting the order.",
      "example": "OTHER"
    }
  },
  "required": [
    "reject_reason"
  ]
}