Integration Guides
Trigger a KYC journey with redirect
overview this is a common flow for triggering a kyc flow for a new individual from an external system, the clients system will gather information on the user, push that data to detected and then launch the verification journey powered by the detected portal the api flow is create a profile of type 'individual' add the details of the person to that profile (name and email as a minimum) create a 'preauthorised' link for that user to follow redirect the user or surface the link in an iframe recieve the webhook when the user has completed the process \ config theme redux dark look classic \ sequencediagram participant clientbackend as clients backend app participant detectedapis as detected apis note over clientbackend, detectedapis authorisation clientbackend >> detectedapis post /oauth/token detectedapis >> clientbackend auth token note over clientbackend, detectedapis create a profile for the indervidual clientbackend >> detectedapis post /profiles detectedapis >> clientbackend profile references note over clientbackend, detectedapis add an indervidual to the profile clientbackend >> detectedapis post /representatives (name, email, etc) detectedapis >> clientbackend representative references note over clientbackend, detectedapis get link to verify flow for this person clientbackend >> detectedapis post /representatives/{uuid}/login links detectedapis >> clientbackend pre authed link for this person note left of clientbackend surface this in an \<br/>iframe or redirect the user note over clientbackend, detectedapis listen for webhook for when user completes verification detectedapis >> clientbackend verify webhook