Use permalinks
Create permalinks to share with your applicants without complex integration.
Permalinks are created manually in cases where you have not yet integrated with Sumsub but still want to let your applicants pass verification. A permalink directs an applicant to the configured verification level, where they can complete the verification flow.
You can create permalinks in the following ways:
How permalinks work
A permalink guides your applicants through the following verification journey:
- Applicant opens the provided permalink, which directs them to the configured verification level.
- Applicant provides the required information and completes the verification steps.
- System processes the verification according to the level’s configuration and customization settings.
Create permalink in Dashboard
You can create two types of permalinks:
Note
- Unlike unilinks, each permalink can be used for only one verification (one applicant). Once the verification is completed, the same permalink cannot be reused.
- Applicants who pass identity verification using permalinks will be associated with your API key, allowing you to obtain the applicant data via the Sumsub API or using the Dashboard.
Create one permalink
To create a permalink based on the external user ID:
- In the Dashboard, open the Integrations page and choose between Individuals and Companies.
- Find a verification level for which you want to generate a permalink.
- Click WebSDK permalinks on the right-hand side of the level record and stay in the Link for ID tab, or
- Open the level and click Verification links to create it from inside the level. In the Permalinks tab, use the Specific user section to create it.
- Set the Language drop-down list to specify the interface language of the verification flow.
- Provide an External user ID (or use the randomly generated one).
- In the Link valliduty drop-down list, configure how long the permalink remains active. By default, the link remains valid for 30 minutes, but you can configure the validity period in the range from 30 seconds to 1 month.
- Click Additional link options, to set up optional fields such as Email, Phone,Customization, SDK translations and so on.
- Click Generate link to create a permalink.
- Copy the generated link and share the link with your applicants.
Create set of permalinks
To create a set of independent permalinks:
- In the Dashboard, open the Integrations page and choose between Individuals and Companies.
- Find a verification level for which you want to generate permalinks.
- Click WebSDK permalinks on the right-hand side of the level record and open the Multiple links tab, or
- Open the level and click Verification links to create it from inside the level. In the Permalinks tab, use the External users section to to generate multiple permalinks.
- Set the Language drop-down list to specify the interface language of the verification flow.
- In the Link valliduty drop-down list, configure how long the permalink remains active. By default, the link remains valid for 30 minutes, but you can configure the validity period in the range from 30 seconds to 1 month.
- In the Links count field, specify the number of links to generate.
- Click Generate multiple links to create a set of permalinks.
- Copy the generated links and share them with your applicants.
Create permalink via Sumsub API
To create a permalink via the API, use this API method.
curl -X POST \ 'https://api.sumsub.com/resources/sdkIntegrations/levels/basic-kyc-level/websdkLink?ttlInSecs=1800&externalUserId=johnDoeId&lang=en' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{ }'Response
A sharable URL is returned.
{
"url": "https://api.sumsub.com/idensic/l/#/lPDnIKwzmxPfDohk"
}Updated about 10 hours ago