Build location-aware apps and services using the world’s #1 location platform
Emits the weather report for a specific ZIP code on a schedule
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
Updates a record if recordId
is provided or adds a record to a table.
The HERE API provides a suite of location-based services including maps, geocoding, places, routing, and traffic. With Pipedream, you can automate workflows that require real-time location intelligence. For instance, enhance logistics with dynamic routing, personalize customer interactions with geolocation data, or monitor assets by integrating location updates into your systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
here: {
type: "app",
app: "here",
}
},
async run({steps, $}) {
// Returns a sample set of weather observations for Berlin
// See https://developer.here.com/documentation/weather/dev_guide/topics/example-weather-observation.html
return await axios($, {
url: `https://weather.ls.hereapi.com/weather/1.0/report.json?apiKey=${this.here.$auth.apikey}&product=observation&name=Berlin-Tegel`,
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})