REST API
Call /v1 from anything.
A standard REST surface. Point your existing HTTP client at it and embed mapping straight into your import flow.
- HMAC self-contained keys (mp_live_) — authenticated with no key-lookup latency.
- upload → match → validate → commit, or one-shot it with /v1/transform, /v1/convert, /v1/reshape.
- Inline results or HMAC-signed webhook batches — you pick per request.
- Idempotency keys on every POST make retries safe.
# Upload — only headers + 3 sample rows leave you (schema-only mode) curl -X POST https://api.adaptivmapr.com/v1/uploads \ -H "Authorization: Bearer mp_live_…" \ -F "file=@patients.csv" \ -F "template=patient_demographics_v1" # …or skip the steps and one-shot it curl -X POST https://api.adaptivmapr.com/v1/transform \ -H "Authorization: Bearer mp_live_…" -F "file=@patients.csv"