with Netatmo and Clio - Canada?
Emit new event when the state of a bill has changed in Clio. See the documentation
Emit new event when a new activity is created in Clio. See the documentation
Emit new event when a new document is created. See the documentation
The Netatmo API gives you access to data from your Netatmo weather station and connected devices, letting you track weather and air quality, monitor home security, and automate smart home reactions. Using Pipedream, these capabilities open up a world of possibilities for creating workflows that harness real-time environmental data, trigger actions based on weather events, and integrate with a myriad of other services available on Pipedream’s platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
netatmo: {
type: "app",
app: "netatmo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.netatmo.com/api/getpublicdata?lat_ne=10&lon_ne=10&lat_sw=10&lon_sw=10&filter=false`,
headers: {
Authorization: `Bearer ${this.netatmo.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clio_canada: {
type: "app",
app: "clio_canada",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ca.app.clio.com/api/v4/users/who_am_i`,
headers: {
Authorization: `Bearer ${this.clio_canada.$auth.oauth_access_token}`,
},
})
},
})