What do you want to automate

with Firebase Admin and Outreach?

Prompt, edit and deploy AI agents that connect to Firebase Admin, Outreach and 2,800+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add Prospect to Sequence with Outreach API on New Child Object in a Realtime Database from Firebase Admin API
Firebase Admin + Outreach
 
Try it
Add Prospect to Sequence with Outreach API on New Document in Firestore Collection from Firebase Admin API
Firebase Admin + Outreach
 
Try it
Create Account with Outreach API on New Child Object in a Realtime Database from Firebase Admin API
Firebase Admin + Outreach
 
Try it
Create Account with Outreach API on New Document in Firestore Collection from Firebase Admin API
Firebase Admin + Outreach
 
Try it
Create Document with Firebase Admin API on New Call Instant from Outreach API
Outreach + Firebase Admin
 
Try it
New Call Instant from the Outreach API

Emit new event when a call is created, updated, or deleted.

 
Try it
New Child Object in a Realtime Database from the Firebase Admin API

Emit new event when a new child object is discovered within a specific path

 
Try it
New Email Event (Instant) from the Outreach API

Emit new event when an email is created, updated, destroyed, bounced, delivered, opened or replied.

 
Try it
New Document in Firestore Collection from the Firebase Admin API

Emit new event when a structured query returns new documents

 
Try it
New Task Event (Instant) from the Outreach API

Emit new event when a task is created, updated, destroyed or completed.

 
Try it
Create Document with the Firebase Admin API

Creates a New Document. See the documentation

 
Try it
Add Prospect to Sequence with the Outreach API

Adds an existing prospect to a specific sequence in Outreach. See the documentation

 
Try it
Create Firebase Realtime Database Record with the Firebase Admin API

Creates or replaces a child object within your Firebase Realtime Database. See the docs here

 
Try it
Create Account with the Outreach API

Creates an account within Outreach. See the documentation

 
Try it
Get Document with the Firebase Admin API

Retrieves a document from a Firestore collection. See the documentation

 
Try it
Integrate the Firebase Admin API with the Outreach API
Setup the Firebase Admin API trigger to run a workflow which integrates with the Outreach API. Pipedream's integration platform allows you to integrate Firebase Admin and Outreach remarkably fast. Free for developers.

Overview of Firebase Admin

The Firebase Admin SDK API provides powerful backend functionality for Firebase apps. It allows you to interact with Firebase services like Firestore, Firebase Realtime Database, Firebase Storage, and Firebase Authentication directly from a server. With Pipedream, you can harness this API to automate complex workflows, respond to Firebase events in real-time, and integrate with countless other services.

Connect Firebase Admin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import admin from "firebase-admin"
export default defineComponent({
  props: {
    firebase_admin_sdk: {
      type: "app",
      app: "firebase_admin_sdk",
    },
  },
  async run({ steps, $ }) {
    // Enter values for the following parameters below this code step,
    // These get passed to the initializeApp method below.
    const { 
      projectId, 
      clientEmail, 
      privateKey,
      region = "firebaseio.com",
    } = this.firebase_admin_sdk.$auth

    // Before passing the privateKey to the initializeApp constructor,
    // we have to replace newline characters with literal newlines
    const formattedPrivateKey = privateKey.replace(/\\n/g, "\n")

    // See https://firebase.google.com/docs/reference/admin/node/admin.credential.html#cert
    if (!admin.apps.length) {
      admin.initializeApp({
        credential: admin.credential.cert({
          projectId,
          clientEmail,
          privateKey: formattedPrivateKey,
        }),
        databaseURL: `https://${projectId}-default-rtdb.${region}/`,
      })
    }
  },
})

Overview of Outreach

The Outreach API offers extensive capabilities to automate sales engagement processes and integrate with other tools seamlessly on Pipedream. With this API, you can sync lead and prospect data, automate outreach campaigns, and trigger actions based on sales interactions. The API provides endpoints to manage prospects, accounts, opportunities, and more, offering a rich set of data for custom workflows.

Connect Outreach

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    outreach: {
      type: "app",
      app: "outreach",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.outreach.io/api/v2/accounts`,
      headers: {
        Authorization: `Bearer ${this.outreach.$auth.oauth_access_token}`,
        "Content-Type": `application/vnd.api+json`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo