with Langfuse and Ramp (Sandbox)?
Emit new event when user feedback (score) is submitted on a trace in Langfuse. See the documentation
Emit new event for each new transaction created in Ramp.
Emit new event when a new trace is recorded in Langfuse. See the documentation
Emit new event when there is a change in transaction status.
Emit new event when the status of a transfer payment changes
Attach user feedback to an existing trace in Langfuse. See the documentation
Sends out an invite for a new user. See the documentation
Creates a new virtual card for a given user. See the documentation
Uploads a receipt for a given transaction and user. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
langfuse: {
type: "app",
app: "langfuse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.langfuse.$auth.region}.langfuse.com/api/public/observations`,
auth: {
username: `${this.langfuse.$auth.public_key}`,
password: `${this.langfuse.$auth.secret_key}`,
},
})
},
})
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}`,
},
})
},
})