Properties
| Name | Type | Description |
|---|---|---|
| tip | integer | Updated tip amount in cents. |
| dropoff_instructions | string | Updated dropoff instructions for the Dasher. |
| dropoff_phone_number | string | Updated phone number for the dropoff contact. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-delivery-update-request-schema.json",
"title": "DeliveryUpdateRequest",
"description": "DeliveryUpdateRequest schema from DoorDash API",
"type": "object",
"properties": {
"tip": {
"type": "integer",
"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"
}
}
}