Integration guide
Two endpoints cover every provisioning scenario. Which one you use comes down to whether the applicant is in front of you right now, and how you plan to reconcile the outcome.
Choosing an endpoint
Recipe: hand off a user who is already on your site
This is what the two-minute link expiry is designed for.
1
Call /v1/login-sessions
Your server calls the endpoint with the applicant's email and your
externalRef.2
Store the clientId
Persist the returned
clientId against your own record.3
Redirect immediately
Issue an HTTP redirect to
loginUrl in the same request cycle.Treat loginUrl as a credential
Recipe: onboard someone by email
Because a minted link expires in about two minutes, do not email loginUrl yourself.
1
Call /v1/applications
Create the application and capture the
clientId.2
Let the dashboard issue the invitation
Have your compliance team issue the invitation from the dashboard, which sends the applicant a link with an expiry appropriate to email. Alternatively, send your own message directing them to contact you when they are ready to complete it.
If the applicant lets a link lapse, a fresh one can always be issued. Teammates can request their own replacement link from the portal without staff involvement.
Reconciliation
There is no programmatic way to learn an application's outcome. The API provisions applications; it does not report on them. Plan for this explicitly rather than discovering it late.
- Persist
clientIdand your ownexternalRefat provisioning time. - Reconcile outcomes through the compliance dashboard.
- Design your data model so an outcome can be attached later, rather than assuming a synchronous result.
Raise this during scoping
Error handling
- Treat
401and403as configuration problems, not transient ones. Do not retry them in a loop. - Retry
429and500with exponential backoff and jitter. - Treat
410as permanent for that applicant identity: the record was erased under a data-governance request and will not come back. - Because provisioning is idempotent, a retry after a timeout is safe and will not create a duplicate.
The full error table is in Onboarding API reference.
Going live
1
Confirm your intake labels
Check which intake labels exist and whether you must send
labelId explicitly.2
Build against a test tenant
There is no self-serve sandbox. Ask Aurora Edge for a test tenant so your first end-to-end runs do not land in your live case book.
3
Obtain a production API key
Request it from Aurora Edge and capture the secret into a secret manager at the moment it is issued. It is shown once and never again.
4
Check your outbound IP
Verify your server's outbound IP will stay within the per-IP limit if it is shared.
5
Agree the reconciliation process
Settle with your compliance team how outcomes get back to your systems, since the API will not tell you.
6
Run an end-to-end test
Complete a real applicant journey before enabling it for volume.