What do you want to automate

with Invoiced and MEXC?

Prompt, edit and deploy AI agents that connect to Invoiced, 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
Integrate the Invoiced API with the MEXC API
Setup the Invoiced API trigger to run a workflow which integrates with the MEXC API. Pipedream's integration platform allows you to integrate Invoiced and MEXC remarkably fast. Free for developers.

Overview of Invoiced

The Invoiced API empowers users to automate billing and invoicing processes with ease. It facilitates the creation, sending, and management of invoices, along with tracking payments and customer interaction. By harnessing the Invoiced API on Pipedream, you can craft workflows that respond to business events in real-time, sync invoice data with accounting software, or trigger customer engagement actions upon payment statuses.

Connect Invoiced

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    invoiced: {
      type: "app",
      app: "invoiced",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.invoiced.com/invoices`,
      auth: {
        username: `${this.invoiced.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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