Online escrow service
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
The Escrow.com API allows developers to create applications that can connect to
the Escrow.com platform and perform various tasks.
Some examples of what you can build using the Escrow.com API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
escrow: {
type: "app",
app: "escrow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.escrow.com/2017-09-01/customer/me`,
auth: {
username: `${this.escrow.$auth.email}`,
password: `${this.escrow.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})