requests
Make Requests
- Interface is REST-based
- POST data is application/json
- Request and response HTTP header “Content-type” is always “application/json”
- We use normal HTTP status codes
CURL example:
You will have to replace ${apiKey} curl -H "Authorization: Bearer ${apikey}" -v https://api.doordash.com/drive/v1/deliveries/${id}
with your specific API key. If you need an api key - contact [email protected]
Important notes:
!! Please retry all 50x response status codes as the error could be transient. We recommend up to 3 retries with some exponential backoff delay between requests.
When providing a time to any of the below APIs (i.e. pickup_time
or delivery_time
), the format must be UTC.**