Efficiently manage your crew and equipment from one place and ensure nothing falls through the cracks.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rentman: {
type: "app",
app: "rentman",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rentman.net/contacts`,
headers: {
Authorization: `Bearer ${this.rentman.$auth.api_token}`,
"Content-Type": `application/json`,
},
})
},
})
Emit new event when a file is uploaded/updated. See the documentation
Creates a new item based on the specified type. See the documentation
Searches for an item in the system using the item type as the filtering criteria. See the documentation
Updates the details of an existing item based on its type. See the documentation
Rentman uses API keys for authentication. When you connect your Rentman account, Pipedream securely stores the keys so you can easily authenticate to Rentman APIs in both code and no-code steps.