Argorant → Pipedrive.
Connect your Pipedrive account once over OAuth, then push any verified Argorant export into your pipeline — persons deduplicated by email, linked to organizations created on the fly.
Go to app.argorant.com/profile → Integrations and click Connect Pipedrive. Approve the OAuth prompt on your own Pipedrive domain and you're bounced straight back. Reconnecting replaces the previous connection; you can also disconnect from either side at any time.
Programmatic alternative: GET /api/crm/pipedrive/install returns the authorization URL, and GET /api/crm/connections lists what's connected.
Method: POST
URL: https://argorant.com/api/mcp/exports/create
Data: { "filters": { "q": "logistics ops leaders", "country": "Netherlands" },
"limit": 500 }
→ { "type": "job", "job_id": "1234", ... }Method: POST
URL: https://argorant.com/api/crm/push
Data: { "provider": "pipedrive", "job_id": 1234 }
→ { "ok": true, "push_id": "18", "status": "queued",
"status_api_path": "/api/crm/push/18" }The push runs in the background — poll the status endpoint for live counts:
Method: GET
URL: https://argorant.com/api/crm/push/18
→ { "status": "done", "total_rows": 500,
"pushed_rows": 482, "skipped_rows": 18, "failed_rows": 0 }skipped_rows are persons whose email already exists in your Pipedrive — they're left untouched, never duplicated.
Each contact becomes a person with name, work email, phone, and job title. Its company becomes an organization: matched by exact name when it already exists, created automatically when it doesn't, and reused for every other contact from the same company in the push.
Subscribe a webhook to export.ready and call /api/crm/push from the handler — fresh verified lists then land in your pipeline automatically. See Webhooks & idempotency.
Free account, 100 credits included. Pushing exports to Pipedrive costs nothing extra.