Ensure accurate pickup & dropoff
If you’re building for restaurants, see the How to Build for Restaurants Guide.
You can help DoorDash ensure that every order is picked up and dropped off quickly and accurately by providing details about the pickup and delivery, like the name of the person or business sending or receiving the order. We recommend providing as much of this information as possible to help deliveries go smoothly. See guide here for a list of required delivery information to be surfaced to the customer and store.
1. Prerequisites
If you're new to Drive and haven't yet created your first delivery, you should start with one of our tutorials. The tutorials will walk you through getting the credentials you need to call the APIs and making some basic API calls.
- Get started by making API calls
- If you're writing an app in Node.js (using JavaScript or TypeScript), get started using our Node.js SDK
- If you'd like to try our APIs interactively, get started using our Postman collection
2. Create a delivery with pickup information
When you create a delivery, you can specify more information about the pickup location, including:
pickup_business_name
: The name of the business that the Dasher should look for when navigating to the pickup locationpickup_instructions
: Concise written instructions about how to find the exact spot where the Dasher should pick up the orderpickup_reference_tag
: A unique identifier or reference code that the Dasher should look for when identifying the order on a shelf
{
... // other fields
"pickup_business_name": "Neighborhood Deli",
"pickup_instructions": "Go to the bar for pick up.",
"pickup_reference_tag": "Order number 61",
}
3. Create a delivery with dropoff information
When you create a delivery, you can also specify more information about the dropoff location, including:
dropoff_business_name
: The name of the business that the Dasher should look for when navigating to the dropoff locationdropoff_instructions
: Concise written instructions about how to find the exact spot where the Dasher should drop off the orderdropoff_contact_given_name
anddropoff_contact_family_name
: The name of the person to whom the Dasher should hand the order
{
... // other fields
"dropoff_business_name": "ABC Accounting",
"dropoff_instructions": "Take the elevator to the 3rd floor and leave the item on the metal rack.",
"dropoff_contact_given_name": "John",
"dropoff_contact_family_name": "Doe",
}