Amilia

Amilia helps organizations offer, manage and sell activities to their community with the SmartRec eCommerce platform.

Integrate the Amilia API with the Slack API

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

Get Account with Amilia API on New Message In Channels (Instant) from Slack API
Slack + Amilia
 
Try it
List Accounts with Amilia API on New Message In Channels (Instant) from Slack API
Slack + Amilia
 
Try it
Send Message to a Public Channel with Slack API on New Account from Amilia API
Amilia + Slack
 
Try it
Send Message to a Public Channel with Slack API on New Activity from Amilia API
Amilia + Slack
 
Try it
Send Message to a Public Channel with Slack API on Updated Account from Amilia API
Amilia + Slack
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New Account from the Amilia API

Emit new event for every created (client) account in the organization

 
Try it
New Activity from the Amilia API

Emit new event for every new activity in the organization

 
Try it
Updated Account from the Amilia API

Emit new event for every updated (client) account in the organization

 
Try it
Updated Activity from the Amilia API

Emit new event for every updated activity in the organization

 
Try it
Get Account with the Amilia API

Get an (client) account in your organization. See the docs here

 
Try it
List Accounts with the Amilia API

List all (client) accounts in an organization. See the docs here

 
Try it
Send Message to a Public Channel with the Slack API

Send a message to a public channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Send Message to a Private Channel with the Slack API

Send a message to a private channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Send a Direct Message with the Slack API

Send a direct message to a single user. See postMessage or scheduleMessage docs here

 
Try it

Overview of Amilia

Amilia API serves as a gateway to streamline recreation and community-based activities management. It allows developers to integrate a variety of functionalities such as account management, program registrations, and scheduling into their applications. With Pipedream, you can harness this API to automate processes, sync data across platforms, and enhance customer engagement by tying into email, SMS services, or other business tools.

Connect Amilia

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: {
    amilia: {
      type: "app",
      app: "amilia",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.amilia.com/api/v3/en/keywords`,
      headers: {
        Authorization: `Bearer ${this.amilia.$auth.api_key}`,
      },
    })
  },
})

Overview of Slack

The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. When you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions, or write your own code against the Slack API.

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Connect Slack

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: {
    slack: {
      type: "app",
      app: "slack",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.

Community Posts

Airtable Webhooks with Slack + Pipedream
Airtable Webhooks with Slack + Pipedream
We love Airtable here at Pipedream. But Airtable lacks one killer feature — webhooks. We took advantage of Airtable’s Slack notifications and built a way to send webhooks to an HTTP endpoint every time a record is created or updated in a base. It takes 10 minutes to setup and it’s free.