Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Sendoso API

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

Generate eGift Link with Sendoso API on Custom Interval from Schedule API
Schedule + Sendoso
 
Try it
Generate eGift Link with Sendoso API on Daily schedule from Schedule API
Schedule + Sendoso
 
Try it
Generate eGift Link with Sendoso API on Monthly Schedule from Schedule API
Schedule + Sendoso
 
Try it
Generate eGift Link with Sendoso API on Weekly schedule from Schedule API
Schedule + Sendoso
 
Try it
Get Send Status with Sendoso API on Custom Interval from Schedule API
Schedule + Sendoso
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Send Created from the Sendoso API

Emit new event when a new send is created. See docs here

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Generate eGift Link with the Sendoso API

Generate a new E-Gift link See the docs here

 
Try it
Get Send Status with the Sendoso API

Track all sent gifts and retrieve analytics information regarding sent gift. See the docs here

 
Try it
Send A Physical Gift With Address Confirmation with the Sendoso API

Send a physical gift. See the docs here

 
Try it

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.

Overview of Sendoso

The Sendoso API provides an easy-to-use platform to quickly and effectively
send physical gifts, cards, and other items to your customers, vendors, or
other key stakeholders. With the Sendoso API, you can build powerful customer
engagement campaigns that include personalized physical gifts and gestures.

The following are some of the things you can build using the Sendoso API:

  • Personalized bulk mailing campaigns, such as holiday cards or special
    occasion items
  • Targeted customer experience campaigns that incorporate a unique physical
    gift directly related to the customer journey
  • Automated thank you packages for key customers and vendors
  • Email programs that include personalized physical products
  • Invitation and promotional campaigns that incorporate physical gifts
  • Corporate gifting programs for employee recognition or development

Connect Sendoso

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