What Connect does
- Imports your existing customer records (CSV/XLSX) so Authmatech can match and enrich them.
- Enriches profiles with identity and verification signals.
- Syncs verification and journey events out to your integrations on an ongoing basis.
API surface
Connect endpoints live under/v1/api/me/connect/** with the standard X-API-KEY + X-CLIENT-ID headers.
| Action | Endpoint |
|---|---|
| Connect overview | GET /v1/api/me/connect/overview |
| List integrations | GET /v1/api/me/connect/integrations |
| Create an integration | POST /v1/api/me/connect/integrations |
| Update an integration | PATCH /v1/api/me/connect/integrations/{integrationId} |
| Delete an integration | DELETE /v1/api/me/connect/integrations/{integrationId} |
| Integration sync history | GET /v1/api/me/connect/integrations/{integrationId}/sync-history |
| Download a sample import file | GET /v1/api/me/connect/import/sample.csv |
| Parse an upload (CSV/XLSX) | POST /v1/api/me/connect/import/parse |
| Start an import job | POST /v1/api/me/connect/import/start |
| List import jobs | GET /v1/api/me/connect/import/jobs |
| List profiles | GET /v1/api/me/connect/profiles |
| Enrich a profile | POST /v1/api/me/connect/profiles/{profileId}/enrich |
Importing your data
Parse before you commit
Upload your file to
POST /v1/api/me/connect/import/parse to validate columns and preview how rows map — before anything is written.Start the job
Kick off the import with
POST /v1/api/me/connect/import/start, then track progress via GET /v1/api/me/connect/import/jobs.Configuring an integration
Create an integration withPOST /v1/api/me/connect/integrations, then monitor sync-history to confirm events are flowing. Admin-side connect configuration (per-client) is managed from the Authmatech dashboard.
Connect is enabled per account. Contact sales@authmatech.com to turn it on and discuss supported destinations.