Occasion

Occasion is the fastest booking and scheduling software available.

Integrate the Occasion API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Occasion

The Occasion API enables you to create powerful web and mobile applications
that allow your customers to experience events more efficiently. With this API,
you can build applications that fulfill a variety of functions and needs. Here
are a few examples of what you can build:

  • Online event registration applications that are secure and give users an easy
    way to save and purchase tickets
  • SEO-friendly websites for each event that present details, announcements, and
    imagery
  • Geolocation-based applications that allow customers to explore events near
    them
  • Mobile applications that enable users to keep track of events, purchases, and
    schedules
  • Social media applications that help users to spread the word about events
  • Event analytics applications that measure the success of events and identify
    best practices
  • Personalized experiences for customers such as e-commerce, personalized
    agendas, and more

Connect Occasion

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: {
    occasion: {
      type: "app",
      app: "occasion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.getoccasion.com/api/v1/merchants`,
      auth: {
        username: `${this.occasion.$auth.api_login}`,
        password: `${this.occasion.$auth.api_secret}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})