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 Data Stores API

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

Add or update a single record with Data Stores API on Student Added to Course from Xperiencify API
Xperiencify + Data Stores
 
Try it
Add or update multiple records with Data Stores API on Student Added to Course from Xperiencify API
Xperiencify + Data Stores
 
Try it
Append to record with Data Stores API on Student Added to Course from Xperiencify API
Xperiencify + Data Stores
 
Try it
Check for existence of key with Data Stores API on Student Added to Course from Xperiencify API
Xperiencify + Data Stores
 
Try it
Delete a single record with Data Stores API on Student Added to Course from Xperiencify API
Xperiencify + Data Stores
 
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
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add Tag To Student with the Xperiencify API

Add a tag to a student. See docs

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
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 an API that allows developers to quickly and easily create web
applications, websites, and mobile games without having to code. With
Xperiencify, developers can focus on creating a great product while leaving the
complexity of coding to the Xperiencify team.

Xperiencify allows developers to explore the possibilities of creating custom
projects such as interactive web applications, dynamic websites, and mobile
games. Through the Xperiencify API, developers have access to a variety of
tools and resources that are designed to support and simplify the process of
creating web and mobile applications.

Examples of projects you can build with the Xperiencify API include:

  • Java web applications
  • Interactive ecommerce websites
  • Responsive mobile websites
  • HTML5 mobile games
  • Mobile messaging applications
  • Social networking applications
  • Cloud managed services
  • Data-driven web applications
  • Mobile game server architecture

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 Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})