Xperiencify

Xperiencify is the world's first fully gamified online course platform that creates a hyper-engaging "experience" for your students.

Integrate the Xperiencify API with the QStash API

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

Create Topic with QStash API on Student Added to Course from Xperiencify API
Xperiencify + QStash
 
Try it
Add Student to Course with Xperiencify API on New Topic Webhook from QStash API
QStash + Xperiencify
 
Try it
Add Tag To Student with Xperiencify API on New Topic Webhook from QStash API
QStash + Xperiencify
 
Try it
Create Endpoint with QStash API on Student Added to Course from Xperiencify API
Xperiencify + QStash
 
Try it
List Endpoints with QStash API on Student Added to Course from Xperiencify API
Xperiencify + QStash
 
Try it
New Topic Webhook from the QStash API

Emit new events on each new QStash topic message

 
Try it
Student Added to Course from the Xperiencify API

Emit new event when a student enrolls into a course.

 
Try it
Add Student to Course with the Xperiencify API

Adds a student to a course. See docs

 
Try it
Create Endpoint with the QStash API

Create a new HTTP endpoint on a QStash topic.

 
Try it
Add Tag To Student with the Xperiencify API

Add a tag to a student. See docs

 
Try it
Create Topic with the QStash API

Create a new QStash topic that emits to multiple endpoints.

 
Try it
Remove Student from all Courses with the Xperiencify API

Remove a student from all courses. See docs

 
Try it

Overview of Xperiencify

Xperiencify is a platform designed to create engaging online courses that motivate students through gamification and psychological triggers. The Xperiencify API allows course creators to manage and automate tasks related to courses, students, and their progress. With Pipedream, you can harness this API to create dynamic workflows that respond to course enrollments, progress milestones, and other student interactions. Automate notifications, gather analytics, synchronize with other platforms, and more, creating a seamless integration between Xperiencify and your digital ecosystem.

Connect Xperiencify

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: {
    xperiencify: {
      type: "app",
      app: "xperiencify",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://api.xperiencify.io/api/public/coach/courses/`,
      params: {
        api_key: `${this.xperiencify.$auth.api_key}`,
      },
    })
  },
})

Overview of QStash

QStash API offers a secure, scalable, and simple way to manage message queues and defer tasks. Using this API, you can enqueue messages, schedule tasks to run after a delay, and ensure that tasks are executed exactly once, leveraging the power of serverless architecture. With Pipedream's ability to connect to a multitude of services, you can build complex workflows that trigger actions in other apps based on events in QStash, allowing you to automate cross-application business processes with ease.

Connect QStash

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { axios } from '@pipedream/platform';


export default defineComponent({
  props: {
    qstash: {
      type: "app",
      app: "qstash",
    },
    callback_url: {
      type: "string",
      label: "Callback URL",
      description: "A URL that will be called by QStash with the body given",
    },
    delay: {
      type: "string",
      label: "Delay",
      default: 0,
      description: "Delay the HTTP request to the callback URL (seconds)"
    }
  },
  async run({steps, $}) {
    return axios($, {
      url: `https://qstash.upstash.io/v1/publish/${this.callback_url}`,
      method: 'POST',
      headers: {
        'Authorization': `Bearer ${this.qstash.auth.qstash_token}`,
        'Upstash-Delay': `${this.qstash.delay}s`
      },
      data: {
        hello: 'world'
      }
    });
  }
})