Amilia

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

Integrate the Amilia API with the Stripe API

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

Get Account with Amilia API on New Custom Webhook Events from Stripe API
Stripe + Amilia
 
Try it
List Accounts with Amilia API on New Custom Webhook Events from Stripe API
Stripe + Amilia
 
Try it
Cancel a Payment Intent with Stripe API on New Account from Amilia API
Amilia + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on New Activity from Amilia API
Amilia + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on Updated Account from Amilia API
Amilia + Stripe
 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
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
Canceled Subscription from the Stripe API

Emit new event for each new canceled subscription

 
Try it
Updated Account from the Amilia API

Emit new event for every updated (client) account 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
Cancel a Payment Intent with the Stripe API

Cancel a payment intent. Once canceled, no additional charges will be made by the payment intent and any operations on the payment intent will fail with an error. For payment intents with status=requires_capture, the remaining amount_capturable will automatically be refunded. See the docs for more information

 
Try it
Cancel Or Reverse a Payout with the Stripe API

Cancel or reverse a payout. A payout can be canceled only if it has not yet been paid out. A payout can be reversed only if it has already been paid out. Funds will be refunded to your available balance. See the docs for more information

 
Try it
Capture a Payment Intent with the Stripe API

Capture the funds of an existing uncaptured payment intent. See the docs for more information

 
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 Stripe

The Stripe API is a powerful tool for managing online payments, subscriptions, and invoices. With Pipedream, you can leverage this API to automate payment processing, monitor transactions, and sync billing data with other services. Pipedream's no-code platform allows for quick integration and creation of serverless workflows that react to Stripe events in real-time. For instance, you might automatically update customer records, send personalized emails after successful payments, or escalate failed transactions to your support team.

Connect Stripe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import stripe from 'stripe'

export default defineComponent({
  props: {
    stripe: {
      type: "app",
      app: "stripe",
    }
  },
  async run({steps, $}) {
    const client = stripe(this.stripe.$auth.api_key)

    return await client.accounts.list({ limit: 1 })
  },
})