doordash · JSON Structure

Doordash Delivery Request Structure

DeliveryRequest structure from DoorDash API

Type: object Properties: 21 Required: 3

DeliveryRequest is a JSON Structure definition published by doordash, describing 21 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

external_delivery_id pickup_address pickup_business_name pickup_phone_number pickup_instructions pickup_reference_tag dropoff_address dropoff_business_name dropoff_phone_number dropoff_instructions dropoff_contact_given_name dropoff_contact_family_name order_value tip pickup_time dropoff_time contains_alcohol force_batch_id external_business_id external_store_id items

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/doordash/refs/heads/main/json-structure/doordash-delivery-request-structure.json",
  "name": "DeliveryRequest",
  "description": "DeliveryRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "external_delivery_id": {
      "type": "string",
      "description": "A unique identifier for this delivery, provided by the caller.",
      "example": "D-12345"
    },
    "pickup_address": {
      "type": "string",
      "description": "The full street address for the pickup location.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "pickup_business_name": {
      "type": "string",
      "description": "The business name at the pickup location.",
      "example": "Acme Pickup Store"
    },
    "pickup_phone_number": {
      "type": "string",
      "description": "The phone number at the pickup location.",
      "example": "+15555551234"
    },
    "pickup_instructions": {
      "type": "string",
      "description": "Special instructions for the Dasher at the pickup location.",
      "example": "Leave at the front desk."
    },
    "pickup_reference_tag": {
      "type": "string",
      "description": "A reference tag for the pickup, such as an order number.",
      "example": "example"
    },
    "dropoff_address": {
      "type": "string",
      "description": "The full street address for the dropoff location.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "dropoff_business_name": {
      "type": "string",
      "description": "The business name at the dropoff location.",
      "example": "Acme Pickup Store"
    },
    "dropoff_phone_number": {
      "type": "string",
      "description": "The phone number of the recipient at the dropoff location.",
      "example": "+15555551234"
    },
    "dropoff_instructions": {
      "type": "string",
      "description": "Special instructions for the Dasher at the dropoff location.",
      "example": "Leave at the front desk."
    },
    "dropoff_contact_given_name": {
      "type": "string",
      "description": "The first name of the dropoff contact.",
      "example": "Acme Pickup Store"
    },
    "dropoff_contact_family_name": {
      "type": "string",
      "description": "The last name of the dropoff contact.",
      "example": "Acme Pickup Store"
    },
    "order_value": {
      "type": "int32",
      "description": "The total value of the order in cents.",
      "example": 42
    },
    "tip": {
      "type": "int32",
      "description": "The tip amount in cents.",
      "example": 42
    },
    "pickup_time": {
      "type": "datetime",
      "description": "The requested pickup time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "dropoff_time": {
      "type": "datetime",
      "description": "The requested dropoff time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "contains_alcohol": {
      "type": "boolean",
      "description": "Whether the order contains alcohol, which requires age verification.",
      "example": true
    },
    "force_batch_id": {
      "type": "string",
      "description": "An identifier to group deliveries together for batch assignment to the same Dasher.",
      "example": "D-12345"
    },
    "external_business_id": {
      "type": "string",
      "description": "The external business ID to associate with this delivery.",
      "example": "D-12345"
    },
    "external_store_id": {
      "type": "string",
      "description": "The external store ID to associate with this delivery.",
      "example": "D-12345"
    },
    "items": {
      "type": "array",
      "description": "List of items included in the delivery.",
      "items": {
        "$ref": "#/components/schemas/DeliveryItem"
      }
    }
  },
  "required": [
    "external_delivery_id",
    "pickup_address",
    "dropoff_address"
  ]
}