# Identance WebSDK Integration
# Forwarding to the verification sdk
The merchant (host) website should submit the x-www-form-urlencoded form to https://verification.yoursite.com/ by POST with the following parameters:
# authToken (required)
String with the Json Web Token.
# backUrl (required)
String with the URL to redirect the user, when he exits the verification SDK (clicks the Exit Verification button).
# logoUrl (optional)
String with the URL to redirect the user, when he clicks the header logo.
# requestSource (optional)
An additional flag, that passes to the Compliance Officer. For example, that flag may indicate a high priority for this user.
You may need to clarify the desired values of the requestSource
# Example
Here is an example of a code that can be used to forward the user via a button to the verification SDK:
<form action="https://verification.yoursite.com/" method="POST">
<input type="hidden" name="authToken" value="xxxxx.yyyyy.zzzzz" />
<input type="hidden" name="backUrl" value="https://yoursite.com/profile" />
<input type="hidden" name="logoUrl" value="https://yoursite.com/" />
<input type="hidden" name="requestSource" value="bundle" />
<input type="submit" value="Go to verification" />
</form>