Oyster

Automated Global Employment Platform

Integrate the Oyster API with the Email API

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

Send Yourself an Email with Email API on New Engagement from Oyster API
Oyster + Email
 
Try it
Send Yourself an Email with Email API on New Expense from Oyster API
Oyster + Email
 
Try it
Send Yourself an Email with Email API on New Time Off Request from Oyster API
Oyster + Email
 
Try it
New Engagement from the Oyster API

Emit new event when a new engagement is added. See the documentation

 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
New Expense from the Oyster API

Emit new event when a new expense is created in Oyster. See the documentation

 
Try it
New Time Off Request from the Oyster API

Emit new event when a new time off request is made. See the documentation

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it

Overview of Oyster

The Oyster API allows you to streamline your global employment processes by providing programmatic access to their HR platform. With it, you can automate tasks like managing employee details, handling payroll, and tracking time off. Pipedream, as a serverless integration platform, makes it simple to create workflows that connect the Oyster API with hundreds of other apps. This can help in automating HR operations, syncing employee data across systems, or even sending notifications when certain HR events occur.

Connect Oyster

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

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});