with PayPal and Bridge Interactive Platform?
Emits a new event on a new payment webhook event. See webhooks docs here and Events Types docs here
Emit new event when a new listing is created. See the documentation
Get MLS listings from a dataset. See the documentation
The PayPal API on Pipedream allows you to automate payment processing, manage transactions, and streamline financial operations within your applications. By leveraging Pipedream's serverless platform, you can craft customized workflows that trigger on specific PayPal events, such as successful payments or disputes. Harness the power of automations to synchronize transaction data across diverse systems, send notifications, or even analyze financial trends.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
paypal: {
type: "app",
app: "paypal",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.paypal.$auth.app_type}.paypal.com/v1/identity/oauth2/userinfo`,
headers: {
Authorization: `Bearer ${this.paypal.$auth.oauth_access_token}`,
},
params: {
schema: `paypalv1.1`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bridge_interactive_platform: {
type: "app",
app: "bridge_interactive_platform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bridgedataoutput.com/api/v2/test/listings`,
params: {
access_token: `${this.bridge_interactive_platform.$auth.access_token}`,
},
})
},
})