What do you want to automate

with Altiria and HelpSpot?

Prompt, edit and deploy AI agents that connect to Altiria, HelpSpot 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
Send SMS with Altiria API on New Request Created from HelpSpot API
HelpSpot + Altiria
 
Try it
Send SMS with Altiria API on New Request Updated from HelpSpot API
HelpSpot + Altiria
 
Try it
New Request Created from the HelpSpot API

Emit new event when a new request is created.

 
Try it
New Request Updated from the HelpSpot API

Emit new event when a request is updated.

 
Try it
Send SMS with the Altiria API

Send an SMS message. The message will be sent to the phone numbers you specify. See the documentation

 
Try it
Create Request with the HelpSpot API

Creates a new user request. See the documentation

 
Try it
Update Request with the HelpSpot API

Updates an existing user request. See the documentation

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

Connect Altiria

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    altiria: {
      type: "app",
      app: "altiria",
    }
  },
  async run({steps, $}) {
    const data = {
    "credentials":{
        "apikey": `${this.altiria.$auth.api_key}`,
        "apisecret": `${this.altiria.$auth.api_secret}`
        }
    }
    return await axios($, {
      method: "post",
      url: `https://www.altiria.net:8443/apirest/ws/getCredit`,
      data,
    })
  },
})

Connect HelpSpot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    helpspot: {
      type: "app",
      app: "helpspot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.helpspot.$auth.subdomain}.helpspot.com/api/index.php`,
      headers: {
        Authorization: `Bearer ${this.helpspot.$auth.api_token}`,
      },
      params: {
        method: `private.addressbook.getContacts`,
        output: `json`,
      },
    })
  },
})

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