import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chargekeep: {
type: "app",
app: "chargekeep",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://crm.chargekeep.com/api/services/Platform/User/GetUsers`,
headers: {
"accept": `application/json`,
"api-key": `${this.chargekeep.$auth.api_key}`,
},
})
},
})
Emit new event when a new contact is created. See the documentation
Emit new event when a new product is created. See the documentation
Create or update a contact in Chargekeep. See the documentation
Get contact information from Chargekeep. See the documentation
ChargeKeep uses API keys for authentication. When you connect your ChargeKeep account, Pipedream securely stores the keys so you can easily authenticate to ChargeKeep APIs in both code and no-code steps.