import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
easybroker: {
type: "app",
app: "easybroker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.easybroker.com/v1/collaborations`,
headers: {
"x-authorization": `${this.easybroker.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
Emit new event when a new contact is created. See the documentation
Emit new event when a new contact request is created. See the documentation
Creates or updates a new lead in EasyBroker that is interested in the provided property. See the documentation
Get details of a contact. See the documentation
Get details of a property. See the documentation
List all contact requests. See the documentation
EasyBroker uses API keys for authentication. When you connect your EasyBroker account, Pipedream securely stores the keys so you can easily authenticate to EasyBroker APIs in both code and no-code steps.