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
Creates a unique lead in the Vryno system, ensuring no duplication of lead details. See the documentation
The Vryno API provides functionality to access a platform that specializes in various services including but not limited to real estate, healthcare, and educational services. By integrating this API into Pipedream workflows, developers can automate interactions and data exchanges between Vryno and other platforms, enhancing efficiency and enabling innovative service delivery models.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vryno: {
type: "app",
app: "vryno",
}
},
async run({steps, $}) {
const data = {
"query": "{ fetchBulkImportJob { code messageKey data{ id fileName } } }"
}
return await axios($, {
method: "post",
url: `https://${this.vryno.$auth.company_instance_name}.ms.vryno.com/api/graphql/crm`,
headers: {
Authorization: `Bearer ${this.vryno.$auth.oauth_access_token}`,
},
data,
})
},
})