Socket
Book a DemoInstallSign in
Socket

@doordash/sdk

Package Overview
Dependencies
Maintainers
12
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@doordash/sdk

The DoorDash Node.js SDK with the ability to request a delivery through the Drive API

Source
npmnpm
Version
0.2.23
Version published
Weekly downloads
2.2K
20.82%
Maintainers
12
Weekly downloads
 
Created
Source

DoorDash Node.js SDK

This is a Node.js SDK for the DoorDash API which includes the ability to request deliveries through the Drive API.

Install

$ npm install --save @doordash/doordash-sdk-node

How to use

If you are using CommonJS modules:

const DoorDashClient = require("@doordash/doordash-sdk-node");
const { v4 : uuidv4 } = require("uuid");
    
const client = new DoorDashClient.DoorDashClient({
    developer_id: "{your developer_id}",
    key_id: "{your key_id}",
    signing_secret: "{your signing_secret}"
});
	
const response = client.createDelivery({
    external_delivery_id: uuidv4(),
    pickup_address: "1000 4th Ave, Seattle, WA, 98104",
    dropoff_address: "1201 3rd Ave, Seattle, WA, 98101"
}).then(() => {
    // do something
}).catch((err) => {
    // handle error
});

If you are using ES6 modules:

import { DoorDashClient } from "@doordash/doordash-sdk-node";
import { v4 as uuidv4 } from "uuid";
	
const client = new DoorDashClient({
    developer_id: "{your developer_id}",
    key_id: "{your key_id}",
    signing_secret: "{your signing_secret}"
});

const response = await client.createDelivery({
    external_delivery_id: uuidv4(),
    pickup_address: "1000 4th Ave, Seattle, WA, 98104",
    dropoff_address: "1201 3rd Ave, Seattle, WA, 98101",
});

If you are using TypeScript:

import { DeliveryResponse,
         DoorDashAuthorizationError,
         DoorDashClient,
         DoorDashResponse} from "@doordash/doordash-sdk-node";

import { v4 as uuidv4 } from "uuid";
	
const client = new DoorDashClient({
    developer_id: "{your developer_id}",
    key_id: "{your key_id}",
    signing_secret: "{your signing_secret}"
});

client.createDelivery({
    external_delivery_id: uuidv4(),
    pickup_address: "1000 4th Ave, Seattle, WA, 98104",
    dropoff_address: "1201 3rd Ave, Seattle, WA, 98101",
}).then((response: DoorDashResponse<DeliveryResponse>) => {
    // do something
}).catch((err: any) => {
    // handle error
});

How can I get onboarded to DoorDash Drive?

Please visit DoorDash Developer portal for more details.

Keywords

doordash

FAQs

Package last updated on 27 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts