Deep Links

GamerSafer provides deep links for directing players to specific screens within the GamerSafer mobile app. Use these when your flow requires the player to take an action inside the GamerSafer app.

Available Deep Links

Deep LinkDescription
https://links.gamersafer.com/mydocumentsOpens the document submission screen in the GamerSafer app

Usage

Deep links are used at specific points in integration flows — typically when a player needs to complete an action in the GamerSafer app before they can access a feature on your platform.

Example: after detecting that a player has not yet submitted their identity document, redirect them directly to the document upload screen:

// Redirect the player (mobile or web)
window.location.href = 'https://links.gamersafer.com/mydocuments';

Mobile Considerations

On mobile, a deep link will open the GamerSafer app directly if it is installed. If the app is not installed, the user will be taken to their device's app store.

Consider detecting app availability before attempting a deep link redirect, and displaying a prompt to install the GamerSafer app if needed.

Returning to Your App

When requesting a GuildInvite or player verification, you can provide a linkBack parameter. After the player completes the required action in the GamerSafer app, they will be redirected to your linkBack URL — which can be a mobile deeplink back into your own app.

{
  "linkBack": "yourapp://gamersafer/callback"
}