What do you want to automate

with Onbee.app and MEXC?

Prompt, edit and deploy AI agents that connect to Onbee.app, MEXC and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Employee with the Onbee.app API

Adds an employee to the system. See the documentation

 
Try it
Delete Employee with the Onbee.app API

Delete an employee with the specified ID. See the documentation

 
Try it
Update Employee with the Onbee.app API

Update an employee with the specified ID. See the documentation

 
Try it
Integrate the Onbee.app API with the MEXC API
Setup the Onbee.app API trigger to run a workflow which integrates with the MEXC API. Pipedream's integration platform allows you to integrate Onbee.app and MEXC remarkably fast. Free for developers.

Connect Onbee.app

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: {
    onbee_app: {
      type: "app",
      app: "onbee_app",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.onbee_app.$auth.workspace_name}.onbee.app/api/employee-list/`,
      headers: {
        Authorization: `Bearer ${this.onbee_app.$auth.api_token}`,
      },
    })
  },
})

Connect MEXC

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
37
38
import { axios } from "@pipedream/platform";
import crypto from "crypto";
export default defineComponent({
  props: {
    mexc: {
      type: "app",
      app: "mexc",
    }
  },
  async run({ steps, $ }) {
    // Build query string
    const timestamp = Date.now()
    const recvWindow = 5000

    const queryString = `recvWindow=${recvWindow}&timestamp=${timestamp}`

    // Generate signature
    const signature = crypto
      .createHmac('sha256', this.mexc.$auth.secret_key)
      .update(queryString)
      .digest('hex')

    // Make authenticated request
    return await axios($, {
      method: 'GET',
      url: 'https://api.mexc.com/api/v3/account',
      headers: {
        'X-MEXC-APIKEY': this.mexc.$auth.access_key
      },
      params: {
        recvWindow,
        timestamp,
        signature
      }
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo