Beaconstac

#1 QR Code Generator

Integrate the Beaconstac API with the Formatting API

Setup the Beaconstac API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Beaconstac 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 Beaconstac

Beaconstac API can be used to develop a range of BLE-enabled applications for Android and iOS. The API can be used to build apps for beacon management, indoor navigation, targeted content delivery, and proximity-based marketing.

Some examples of applications that can be built using the Beaconstac API include:

  • A beacon management app that can be used to configure and manage beacons
  • An indoor navigation app that can be used to provide turn-by-turn directions within a building
  • A targeted content delivery app that can be used to deliver content to specific users based on their location
  • A proximity-based marketing app that can be used to send targeted marketing messages to users based on their proximity to a beacon

Connect Beaconstac

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: {
    beaconstac: {
      type: "app",
      app: "beaconstac",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.beaconstac.com/api/2.0/qrcodes/`,
      headers: {
        "Authorization": `Token ${this.beaconstac.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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