Alpaca

Commission-Free API First Stock Brokerage

Integrate the Alpaca API with the Zoom API

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

Cancel All Orders with Alpaca API on Meeting Created (Instant) from Zoom API
Zoom + Alpaca
 
Try it
Cancel Order with Alpaca API on Meeting Created (Instant) from Zoom API
Zoom + Alpaca
 
Try it
Close All Positions with Alpaca API on Meeting Created (Instant) from Zoom API
Zoom + Alpaca
 
Try it
Close Position with Alpaca API on Meeting Created (Instant) from Zoom API
Zoom + Alpaca
 
Try it
Get Account Info with Alpaca API on Meeting Created (Instant) from Zoom API
Zoom + Alpaca
 
Try it
Meeting Created (Instant) from the Zoom API

Emit new event each time a meeting is created where you're the host

 
Try it
Meeting Started (Instant) from the Zoom API

Emit new event each time a meeting starts where you're the host

 
Try it
Recording Completed (Instant) from the Zoom API

Emit new event each time a new recording completes for a meeting or webinar where you're the host

 
Try it
Meeting Ended (Instant) from the Zoom API

Emit new event each time a meeting ends where you're the host

 
Try it
Meeting Updated (Instant) from the Zoom API

Emit new event each time a meeting is updated where you're the host

 
Try it
Cancel All Orders with the Alpaca API

Attempts to cancel all open orders. A response will be provided for each order that is attempted to be cancelled. If an order is no longer cancelable, the server reject the request, See the docs

 
Try it
Cancel Order with the Alpaca API

Attempts to cancel an open order. If the order is no longer cancelable (example: status=filled), the server will reject the request, See the docs

 
Try it
Close All Positions with the Alpaca API

Closes (liquidates) all of the account’s open long and short positions. A response will be provided for each order that is attempted to be cancelled. If an order is no longer cancelable, the server will reject the request, See the docs

 
Try it
Close Position with the Alpaca API

Closes (liquidates) the account’s open position. Works for both long and short positions, See the docs

 
Try it
Get Account Info with the Alpaca API

Returns the account info, See the docs

 
Try it

Overview of Alpaca

Alpaca API allows you to harness the power of automated trading by providing an interface to manage your stock and equity portfolio through simple API calls. It's particularly suited for building trading bots, algorithmic trading strategies, or just automating interactions with your investment portfolio. Whether you're looking to place trades based on specific market conditions, automatically adjust your portfolio in response to certain triggers, or simply streamline your investment activities, Alpaca's trading API offers a robust solution.

Connect Alpaca

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: {
    alpaca: {
      type: "app",
      app: "alpaca",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.alpaca.markets/v2/account`,
      headers: {
        Authorization: `Bearer ${this.alpaca.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Zoom

The Zoom API lets you tap into a rich set of functionalities to enhance the video conferencing experience within your own app or workflow. With the Zoom API on Pipedream, you can automatically create meetings, manage users, send meeting notifications, and more, orchestrating these actions within a broader automation. This allows for seamless integration with other services, enabling both data collection and action triggers based on Zoom events.

Pipedream workflows allow you to run any Node.js code that connects to the Zoom API. Just create a new workflow, then add prebuilt Zoom actions (create a meeting, send a chat message, etc.) or write your own code. These workflows can be triggered by HTTP requests, timers, email, or on any app-based event (new tweets, a Github PR, Zoom events, etc).

Connect Zoom

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: {
    zoom: {
      type: "app",
      app: "zoom",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.