What do you want to automate

with HERE and Verifone?

Prompt, edit and deploy AI agents that connect to HERE, Verifone and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Weather for ZIP Code from the HERE API

Emits the weather report for a specific ZIP code on a schedule

 
Try it
Integrate the HERE API with the Verifone API
Setup the HERE API trigger to run a workflow which integrates with the Verifone API. Pipedream's integration platform allows you to integrate HERE and Verifone remarkably fast. Free for developers.

Overview of HERE

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.

Connect HERE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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`,
    })
  },
})

Connect Verifone

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { axios } from "@pipedream/platform";
import dayjs from "dayjs";
import crypto from "crypto";

export default defineComponent({
  props: {
    verifone: {
      type: "app",
      app: "verifone",
    }
  },

  async run({steps, $}) {
    let requestDateTime = new Date();
    requestDateTime = dayjs(requestDateTime).format("YYYY-MM-DD hh:mm:ss");

    const algo = "sha256";
    let hash = this.verifone.$auth.vendor_code.length 
            + this.verifone.$auth.vendor_code 
            + requestDateTime.toString().length 
            + requestDateTime;
    hash = crypto.createHmac(algo, this.verifone.$auth.secret_key)
      .update(hash)
      .digest('hex');

    return await axios($, {
      url: `https://api.2checkout.com/rest/6.0/products/`,
      headers: {
        "X-Avangate-Authentication": `code="${this.verifone.$auth.vendor_code}" date="${requestDateTime}" hash="${hash}" algo="${algo}"`,
        Accept: "application/json"
      },
    })
  },
})

Community Posts

Integrating Location Data into Pipedream Workflows
Integrating Location Data into Pipedream Workflows
Over the past few months, I've become somewhat enamored with a new service called Pipedream. Pipedream is yet another serverless solution with a bit of a twist. It makes it easy to build workflows by piecing together various actions like LEGO bricks. These actions are small pieces of programming logic that cover a wide variety of different services. You can connect these actions together along with the ability to write Node code for your own logic.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo