What do you want to automate

with SMS Messages and Nutrient Document Web Services API?

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

Connect SMS Messages

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: {
    sms_messages: {
      type: "app",
      app: "sms_messages",
    }
  },
  async run({steps, $}) {
    const data = {
      "sms": 
      {
        "user":`${this.sms_messages.$auth.username}`, 
        "dst":
        {
          "num":
          [
            "++3460000000"
          ]
        },
        "txt":"Hello world!"
      }
    }
    return await axios($, {
      method: "post",
      url: `https://api.lleida.net/sms/v2/`,
      headers: {
        "content-type": `application/json; charset=utf-8`,
        "accept": `application/json`,
        "authorization": `x-api-key ${this.sms_messages.$auth.api_key}`,
      },
      data,
    })
  },
})

Connect Nutrient Document Web Services API

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: {
    nutrient_document_web_services_api: {
      type: "app",
      app: "nutrient_document_web_services_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.nutrient.io/account/info`,
      headers: {
        Authorization: `Bearer ${this.nutrient_document_web_services_api.$auth.api_key}`,
      },
    })
  },
})

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