What do you want to automate

with Logistia Route Planner and Gloria AI?

Prompt, edit and deploy AI agents that connect to Logistia Route Planner, Gloria AI 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
Create Lead with the Gloria AI API

Creates a new lead/contact in Gloria.ai. See the documentation

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

Connect Logistia Route Planner

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    logistia_route_planner: {
      type: "app",
      app: "logistia_route_planner",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://integration.logistia.app/v1/order`,
      headers: {
        "L-API-KEY": `${this.logistia_route_planner.$auth.api_key}`,
      },
      params: {
        orderNo: `test-order`,
      },
    })
  },
})

Connect Gloria AI

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    gloria_ai: {
      type: "app",
      app: "gloria_ai",
    }
  },
  async run({steps, $}) {
    
    return await axios($, {
      url: `https://api.iamgloria.com/api/v1/contact`,
      headers: {
        Authorization: `Bearer ${this.gloria_ai.$auth.api_key}`,
        "tenant-id": `${this.gloria_ai.$auth.tenant_id}`,
      },
      data,
    })
  },
})

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