The Ramp sandbox is a full-fledged environment in which you can explore different API endpoints and test your application.
Emit new event for each new transaction created in Ramp.
Emit new event for every new row added in a table. See documentation here
Emit new event when there is a change in transaction status.
Emit new event for every insert
, update
, or delete
operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here
Emit new event when the status of a transfer payment changes
Sends out an invite for a new user. See the documentation
Creates a new virtual card for a given user. See the documentation
Call a Postgres function in a database. See the docs here
The Ramp (Sandbox) API provides programmatic access to manage corporate cards and spending in a controlled environment, ideal for testing and development. With this API on Pipedream, developers can automate financial operations, synchronize accounting data, and streamline expense management workflows. Leveraging Pipedream's capabilities, users can integrate Ramp with other services to enhance financial visibility, automate reconciliation processes, and trigger actions based on spending activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ramp_sandbox: {
type: "app",
app: "ramp_sandbox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://demo-api.ramp.com/developer/v1/business`,
headers: {
Authorization: `Bearer ${this.ramp_sandbox.$auth.oauth_access_token}`,
},
})
},
})
Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase: {
type: "app",
app: "supabase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
headers: {
Authorization: `Bearer ${this.supabase.$auth.service_key}`,
"apikey": `${this.supabase.$auth.service_key}`,
},
})
},
})