doordash · JSON Structure

Doordash Marketplace Delivery Webhook Payload Structure

MarketplaceDeliveryWebhookPayload structure from DoorDash API

Type: object Properties: 8

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

Properties

event_type order_id dasher_name dasher_phone_number dasher_location_lat dasher_location_lng estimated_delivery_time tracking_url

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-marketplace-delivery-webhook-payload-structure.json",
  "name": "MarketplaceDeliveryWebhookPayload",
  "description": "MarketplaceDeliveryWebhookPayload structure from DoorDash API",
  "type": "object",
  "properties": {
    "event_type": {
      "type": "string",
      "description": "The type of delivery event.",
      "enum": [
        "dasher_confirmed",
        "dasher_at_store",
        "dasher_picked_up",
        "dasher_at_customer",
        "dasher_delivered"
      ],
      "example": "dasher_confirmed"
    },
    "order_id": {
      "type": "string",
      "description": "The DoorDash order identifier.",
      "example": "D-12345"
    },
    "dasher_name": {
      "type": "string",
      "description": "The Dasher's first name.",
      "example": "Acme Pickup Store"
    },
    "dasher_phone_number": {
      "type": "string",
      "description": "The Dasher's phone number.",
      "example": "+15555551234"
    },
    "dasher_location_lat": {
      "type": "double",
      "description": "The Dasher's current latitude.",
      "example": 37.422
    },
    "dasher_location_lng": {
      "type": "double",
      "description": "The Dasher's current longitude.",
      "example": -122.084
    },
    "estimated_delivery_time": {
      "type": "datetime",
      "description": "The estimated delivery time.",
      "example": "2026-06-02T14:30:00Z"
    },
    "tracking_url": {
      "type": "uri",
      "description": "A URL for tracking the delivery.",
      "example": "https://example.com/path/abc123"
    }
  }
}