The Retriever API is designed for automating contact information retrieval, enriching your CRM data, or building lead generation tools. By integrating it with Pipedream, you can strategically extract valuable data and automate workflows for marketing, sales, or customer support. Pipedream’s serverless platform enables you to connect Retriever with hundreds of other apps, triggering actions based on new data, or updating systems in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
retriever: {
type: "app",
app: "retriever",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.helloretriever.com/api/v1/device_returns/`,
headers: {
Authorization: `Bearer ${this.retriever.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Lead Enrichment for Sales Teams: Automatically enrich lead information in your CRM when a new contact is added. Use Retriever API to fetch additional details and Pipedream to update the record in CRMs like Salesforce or HubSpot, ensuring your sales team has the most current data.
Automated Contact Syncing in Marketing Campaigns: Sync contact details between your marketing platforms and Retriever. When a user signs up via a platform like Mailchimp, use Pipedream to trigger Retriever to gather more info and update the user profile, personalizing your marketing efforts.
Customer Support Ticket Enrichment: Enhance the customer support experience by providing more context to support agents. When a new support ticket is created in tools like Zendesk, use Pipedream with Retriever to pull in additional customer data, equipping agents with a fuller picture to resolve issues efficiently.
Triggers when a new device return order is created. See the documentation
Retriever uses API keys for authentication. When you connect your Retriever account, Pipedream securely stores the keys so you can easily authenticate to Retriever APIs in both code and no-code steps.
Sign in and copy your API Key from API option in the left navigation menu.