Bluesky by Unshape

Revolutionize your Bluesky interactions unlocking the power of automation.

Integrate the Bluesky by Unshape API with the Stripe API

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

Create Post with Bluesky by Unshape API on New Custom Webhook Events from Stripe API
Stripe + Bluesky by Unshape
 
Try it
Get Post with Bluesky by Unshape API on New Custom Webhook Events from Stripe API
Stripe + Bluesky by Unshape
 
Try it
Reply to a Post with Bluesky by Unshape API on New Custom Webhook Events from Stripe API
Stripe + Bluesky by Unshape
 
Try it
Create Post with Bluesky by Unshape API on Canceled Subscription from Stripe API
Stripe + Bluesky by Unshape
 
Try it
Create Post with Bluesky by Unshape API on New Abandoned Cart from Stripe API
Stripe + Bluesky by Unshape
 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
Try it
Canceled Subscription from the Stripe API

Emit new event for each new canceled subscription

 
Try it
New Abandoned Cart from the Stripe API

Emit new event when a customer abandons their cart.

 
Try it
New Customer from the Stripe API

Emit new event for each new customer

 
Try it
New Dispute from the Stripe API

Emit new event for each new dispute

 
Try it
Create Post with the Bluesky by Unshape API

Creates a new post in Bluesky. See the documentation

 
Try it
Get Post with the Bluesky by Unshape API

Fetches a post from Bluesky using its URL. See the documentation

 
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
Reply to a Post with the Bluesky by Unshape API

Allows you to reply to a post in Bluesky. See the documentation

 
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

Overview of Bluesky by Unshape

The Bluesky by Unshape API lets you create, manage, and interact with your Bluesky social media account programmatically. With the API, you can post new statuses, follow or unfollow accounts, fetch a user's statuses, and more. In Pipedream, this can be leveraged to automate social media content sharing, track account interactions, and integrate with other services for enhanced social media management.

Connect Bluesky by Unshape

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    bluesky_by_unshape: {
      type: "app",
      app: "bluesky_by_unshape",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.unshape.app/bluesky/me `,
      headers: {
        "X-Bluesky-Username": `${this.bluesky_by_unshape.$auth.bluesky_username}`,
        "X-Bluesky-Email": `${this.bluesky_by_unshape.$auth.bluesky_email}`,
        "X-Bluesky-App-Password": `${this.bluesky_by_unshape.$auth.bluesky_password}`,
        "Accept": `application/json`,
      },
    })
  },
})

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 })
  },
})