npm

Node package manager

Integrate the npm API with the Templated API

Setup the npm API trigger to run a workflow which integrates with the Templated API. Pipedream's integration platform allows you to integrate npm and Templated remarkably fast. Free for developers.

Create Render with Templated API on npm Download Counts from npm API
npm + Templated
 
Try it
Get Template with Templated API on npm Download Counts from npm API
npm + Templated
 
Try it
List Template Layers with Templated API on npm Download Counts from npm API
npm + Templated
 
Try it
List Templates with Templated API on npm Download Counts from npm API
npm + Templated
 
Try it
Create Render with Templated API on New Package Version from npm API
npm + Templated
 
Try it
New Download Counts from the npm API

Emit new event with the latest count of downloads for an npm package. See the documentation.

 
Try it
New Package Version from the npm API

Emit new event when a new version of an npm package is published. See the documentation

 
Try it
Create Render with the Templated API

Creates a render on a template in Templated. See the documentation

 
Try it
Get Template with the Templated API

Retrieves a single template object referenced by its unique ID. See the documentation

 
Try it
List Template Layers with the Templated API

Lists all layers of a template. See the documentation

 
Try it
List Templates with the Templated API

List all templates of a user on Templated. See the documentation

 
Try it

Overview of Templated

The Templated API allows users to generate custom documents based on predefined templates. It's a powerful tool when you need to create consistent documents or reports with variable data. In Pipedream, you can seamlessly integrate Templated with other services to automate document creation. Combine data from various sources, trigger document generation, and carry out follow-up actions like emailing the document or saving it to cloud storage.

Connect Templated

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    templated: {
      type: "app",
      app: "templated",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.templated.io/v1/templates`,
      headers: {
        Authorization: `Bearer ${this.templated.$auth.api_key}`,
      },
    })
  },
})