Deliveroo · Schema

OrderRequest

Request body for creating a Signature order.

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
quote_id string The identifier of a valid quote.
pickup object
dropoff object
View JSON Schema on GitHub

JSON Schema

signature-api-order-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderRequest",
  "description": "Request body for creating a Signature order.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/signature-api-order-request-schema.json",
  "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"
    }
  }
}