Woopra

End-to-End Customer Journey Analytics Platform.

Go to site
Explore
/
Apps
/
Woopra

Woopra API Integrations

Build and run workflows using the Woopra API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    woopra: {
      type: "app",
      app: "woopra",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://www.woopra.com/track/ce/`,
      auth: {
        username: `${this.woopra.$auth.app_id}`,
        password: `${this.woopra.$auth.secret}`,
      },
      params: {
        host: `pipedream.com`,
        response: `json`,
        cookie: `{your_cookie}`,
        event: `{your_event_name}`,
      },
    })
  },
})

Authentication

Woopra uses API keys for authentication. When you connect your Woopra account, Pipedream securely stores the keys so you can easily authenticate to Woopra APIs in both code and no-code steps.

To retrieve your App ID and API Secret

  • Navigate to your Woopra account and sign in
  • Click dropdown on the top left with your Woopra project name (usually a hostname)
  • Go to “Account” > “Developer”