Unlock the power of location-based insights with Mapulus. Uncover opportunities, track service delivery, pin locations, and overlay insights.
Add or update a single record in your Pipedream Data Store.
Add or update multiple records to your Pipedream Data Store.
Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.
Mapulus API enables you to integrate advanced mapping, routing, and geospatial capabilities into your applications. With Pipedream, you can create powerful workflows that leverage the Mapulus API to automate tasks such as generating optimized routes, geocoding addresses, or analyzing geographic data. By connecting Mapulus to other apps available on Pipedream, you can enrich your business processes, enhance data analytics, or create dynamic location-based services without writing code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mapulus: {
type: "app",
app: "mapulus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mapulus.com/api/v1/maps`,
headers: {
Authorization: `Bearer ${this.mapulus.$auth.api_key}`,
},
})
},
})
Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})