Custom Integrations - Login Tokens Documentation


This API allows your service to generate links that allow a user to automatically login to their IPQualityScore account. NOTE: Your application must be approved to access this functionality and users will be notified that your service can login to their account.

Calling Request Token

https://www.ipqualityscore.com/webhooks/ExampleIntegration/json/token

Request Parameters
Parameter Description Example Value / Format
key Your site's domain or the domain that requested this integration. REQUIRED google.com
secret Your user's current secret created during the authentication process. REQUIRED char(128)

Result

Note: Only JSON responses are available from this API and this API should ONLY be called server side for security reasons.

The token provided from this API is a one time use token to log a user into their IPQualityScore account. To use it you must redirect the user to the URL below:

https://www.ipqualityscore.com/webhooks/ExampleIntegration/json/token?token=TOKENHERE

Parameter Description Example Value / Format
message Description of the status of this call. May contain errors if errors exist. text
success Boolean result of if the request was successful or not. boolean
token A one time use token to login a user to their account. char(128)
Example Code