curl --request POST \
--url https://test.didxtech.com/consumer-onboarding/api/users/{username}/onboarding-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"data": {
"emailSent": true
},
"links": {
"self": "<string>",
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>",
"related": "<string>"
},
"meta": {},
"errors": [
{
"detail": "<string>",
"id": "<string>",
"status": "<string>",
"code": "<string>",
"title": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>"
},
"meta": {}
}
]
}Consumer Onboarding API
Resend the onboarding email for a user in the authenticated tenant
Re-issues the Keycloak action-token onboarding email (single-use, time-boxed). Use after a failed send, an expired link, or a lost email. Only pending invitees can be resent — a user with stored credentials, a federated identity, or QiD enrolment (qid.enabled=true) is already active and receives 409.
curl --request POST \
--url https://test.didxtech.com/consumer-onboarding/api/users/{username}/onboarding-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"data": {
"emailSent": true
},
"links": {
"self": "<string>",
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>",
"related": "<string>"
},
"meta": {},
"errors": [
{
"detail": "<string>",
"id": "<string>",
"status": "<string>",
"code": "<string>",
"title": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>"
},
"meta": {}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Optional overrides; defaults come from the user's stored onboardingContext attribute and the context's defaultStrongAuth. An explicit strongAuth changes the enrolment actions for this send only.

