Oyster

Automated Global Employment Platform

Integrate the Oyster API with the Schedule API

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

New Engagement from the Oyster API

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

 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Expense from the Oyster API

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

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
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

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}`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.