What do you want to automate

with Uber Direct and numverify?

Prompt, edit and deploy AI agents that connect to Uber Direct, numverify 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
Validate Phone with the numverify API

Validates a phone number. See the documentation

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

Connect Uber Direct

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    uber_direct: {
      type: "app",
      app: "uber_direct",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.uber.com/v1/customers/${this.uber_direct.$auth.customer_id}/deliveries`,
      headers: {
        Authorization: `Bearer ${this.uber_direct.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Connect numverify

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    numverify: {
      type: "app",
      app: "numverify",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://apilayer.net/api/validate`,
      params: {
        access_key: `${this.numverify.$auth.api_key}`,
        number: `14158586273`,
      },
    })
  },
})

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