ExpoFP

Create interactive Expo floor plans

Integrate the ExpoFP API with the Formatting API

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

Add Exhibitor with the ExpoFP API

Adds an exhibitor. See docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Get Booth with the ExpoFP API

Get details of a booth. See docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Get Exhibitor with the ExpoFP API

Get details of an exhibitor. See docs here

 
Try it

Overview of ExpoFP

Using the ExpoFP API, you can easily develop applications that can take
advantage of the huge range of features available on the Expo platform.

Here are some examples of what you can build using the ExpoFP API:

  • A mobile app that can be used to book appointments and track events at your
    business
  • A social network for connecting with friends and family
  • A gaming platform that lets you play your favorite games with friends
  • A news feed that keeps you up-to-date with the latest news and events
  • A messaging app that lets you chat with friends and family
  • A GPS-based tracking system that lets you see where your friends and family
    are

Connect ExpoFP

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    expofp: {
      type: "app",
      app: "expofp",
    }
  },
  async run({steps, $}) {
    const data = {
      "token": `${this.expofp.$auth.api_token}`,
    }
    return await axios($, {
      method: "post",
      url: `https://app.expofp.com/api/v1/list-events`,
      headers: {
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Connect Formatting

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