with RocketReach and Claris FileMaker Server Data API?
The RocketReach API lets you tap into a vast database of professionals to find email addresses, phone numbers, and social media profiles. With it, you can enrich lead data, automate the process of lead generation, and integrate this enriched data into your CRM or marketing automation tools. Pipedream's platform allows you to create serverless workflows using the RocketReach API to trigger events, handle data, and connect with countless other apps to streamline your processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rocketreach: {
type: "app",
app: "rocketreach",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rocketreach.co/v2/api/account?api_key=${this.rocketreach.$auth.api_key}`,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
claris_filemaker_server_data_api: {
type: "app",
app: "claris_filemaker_server_data_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.claris_filemaker_server_data_api.$auth.api_url}/fmi/data/v2/databases/${this.claris_filemaker_server_data_api.$auth.database_name}/layouts`,
headers: {
Authorization: `Bearer ${this.claris_filemaker_server_data_api.$auth.oauth_access_token}`,
},
})
},
})