pandadoc-node-client
TypeScript icon, indicating that this package has built-in type declarations

6.2.0 • Public • Published

The Official PandaDoc Node client SDK

PandaDoc SDK spans a broad range of functionality to help you build incredible documents automation experiences inside your product.

Docs

Requirements

Node >= 12

Installation

From package manager:

npm install pandadoc-node-client

Or directly from the repository:

npm install git+https://github.com/PandaDoc/pandadoc-api-node-client.git

Getting Started

import * as pd_api from "pandadoc-node-client";

// replace it with your API key
const API_KEY = "YOUR_API_KEY";
const configuration = pd_api.createConfiguration(
    { authMethods: {apiKey: `API-Key ${API_KEY}`} }
);

const apiInstance = new pd_api.TemplatesApi(configuration);

apiInstance.listTemplates({ deleted: false, tag: ["doe-inc-proposals"] }).then((data) => {
  console.log('API called successfully. Returned data: %o', data);
}).catch((error) => console.error(error));

Authorization

apiKey

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

oauth2

Examples

License

SDK is licensed under the MIT License.

Readme

Keywords

Package Sidebar

Install

npm i pandadoc-node-client

Weekly Downloads

13,287

Version

6.2.0

License

MIT

Unpacked Size

1.34 MB

Total Files

564

Last publish

Collaborators

  • showoffer