doordash · JSON Structure

Doordash Delivery Update Request Structure

DeliveryUpdateRequest structure from DoorDash API

Type: object Properties: 3

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

Properties

tip dropoff_instructions dropoff_phone_number

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-update-request-structure.json",
  "name": "DeliveryUpdateRequest",
  "description": "DeliveryUpdateRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "tip": {
      "type": "int32",
      "description": "Updated tip amount in cents.",
      "example": 42
    },
    "dropoff_instructions": {
      "type": "string",
      "description": "Updated dropoff instructions for the Dasher.",
      "example": "Leave at the front desk."
    },
    "dropoff_phone_number": {
      "type": "string",
      "description": "Updated phone number for the dropoff contact.",
      "example": "+15555551234"
    }
  }
}