with Ramp (Sandbox) and FlippingBook?
Emit new event for each new transaction created in Ramp.
Emit new event when there is a change in transaction status.
Emit new event when a new lead is created via a lead capture form.
Emit new event when the status of a transfer payment changes
Sends out an invite for a new user. See the documentation
Generates a new flipbook from an input PDF file. See the documentation
Creates a new virtual card for a given user. See the documentation
Locates a specific flipbook using the provided title. See the documentation
Edits an existing flipbook by replacing it with a new input PDF file. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flippingbook: {
type: "app",
app: "flippingbook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-tc.is.flippingbook.com/api/v1/auth/me`,
headers: {
Authorization: `Bearer ${this.flippingbook.$auth.api_key}`,
},
})
},
})