with Zoho Meeting and Public Record?
The Zoho Meeting API lets you automate various aspects of managing online meetings and webinars. You can create, update, or cancel sessions, list all your meetings, fetch details of specific meetings, and more. Integrating the Zoho Meeting API with Pipedream enables you to connect your meeting management flow with other apps and services, streamlining your workflow and automating repetitive tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_meeting: {
type: "app",
app: "zoho_meeting",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://meeting.${this.zoho_meeting.$auth.base_api_uri}/api/v2/user.json`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_meeting.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
public_record: {
type: "app",
app: "public_record",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.propmix.io/pubrec/assessor/v1/GetPropertyDetails`,
headers: {
"Access-Token": `${this.public_record.$auth.api_key}`,
},
params: {
StreetAddress: `305 E 2nd St`,
City: `Lucas`,
State: `KS`,
PostalCode: `67648`,
OrderId: `5411013`,
},
})
},
})