Deliveroo · JSON Structure

Signature Api Order Request Structure

Request body for creating a Signature order.

Type: object Properties: 3
Food DeliveryGroceryMarketplaceLogisticsRestaurants

OrderRequest is a JSON Structure definition published by Deliveroo, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

quote_id pickup dropoff

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/signature-api-order-request-structure.json",
  "name": "OrderRequest",
  "description": "Request body for creating a Signature order.",
  "type": "object",
  "properties": {
    "quote_id": {
      "type": "string",
      "description": "The identifier of a valid quote.",
      "example": "gb-12345"
    },
    "pickup": {
      "$ref": "#/components/schemas/Location"
    },
    "dropoff": {
      "$ref": "#/components/schemas/Location"
    }
  }
}