Powerful CRM System for a Fraction of Price. Vryno is a powerful CRM system that has been meticulously crafted to cater to the evolving needs of modern businesses.
Go to siteThe 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,
})
},
})
Automated Property Listing Sync: Automatically sync property listings from Vryno to real estate platforms like Zillow or Realtor.com. Every time a new listing is added on Vryno, the workflow triggers an event in Pipedream that posts these listings to other platforms, keeping all listings up-to-date across multiple channels.
Appointment Scheduling Integration: Connect Vryno's healthcare appointment scheduling features with Google Calendar. When a new appointment is scheduled in Vryno, a Pipedream workflow automatically creates a corresponding event in the doctor's Google Calendar, ensuring they never miss an appointment and optimize their daily schedule.
Automated Student Enrollment Notifications: When a new student enrolls in a course via Vryno, use Pipedream to trigger an email notification through services like SendGrid or Mailgun. This workflow could also update a Slack channel used by educational administrators, keeping everyone informed in real time about new enrollments.
Creates a unique lead in the Vryno system, ensuring no duplication of lead details. See the documentation
Vryno uses OAuth authentication. When you connect your Vryno account, Pipedream will open a popup window where you can sign into Vryno and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Vryno API.
Pipedream requests the following authorization scopes when you connect your account:
openid
vryno_offline_access
GET
https://accounts.vryno.com/oidc/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
&
code_challenge_method=SHA-256
POST
https://accounts.vryno.com/oidc/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
&
code_verifier={{oauth.verifier}}
POST
https://accounts.vryno.com/oidc/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}