Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when there is a change in transaction status.
Creates a new virtual card for a given user. See the documentation
Uploads a receipt for a given transaction and user. See the documentation
The Ramp API provides programmatic access to financial and accounting functionalities, allowing for the management of company cards, transactions, and reporting. By leveraging the Ramp API within Pipedream, you can automate intricate finance operations, synchronize transaction data with accounting software, trigger notifications based on spending activities, and analyze financial data in real-time, integrating with other services for enhanced financial workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ramp: {
type: "app",
app: "ramp",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ramp.com/developer/v1/business`,
headers: {
Authorization: `Bearer ${this.ramp.$auth.oauth_access_token}`,
},
})
},
})