Loading...

Knowledge Base

Generate a Customer Login Token Using the API

When you want to generate a temporary login token for a customer using the API. This article explains the required authentication parameters, customer and IP validation, token-based customer control panel access, and token validity limitations.

Generating a Login Token

 

Description

Returns an authentication token for a Customer.

You can login to the Customer's Control Panel using the generated token. The Control panel can be accessed at following link, where XXXXX is the generated token.

http://manage.resellerclub.com/servlet/AutoLoginServlet?userLoginId=XXXXX&role=customer

 

Note

The token will be valid for a duration of only 120 seconds.

 

Parameters

NameData TypeRequired / OptionalDescription
auth-useridIntegerRequiredAuthentication Parameter
api-keyStringRequiredAuthentication Parameter
customer-idIntegerRequiredCustomer ID of the Customer
ipStringRequiredIP address of the Customer

HTTP Method

GET

Example Test URL Request

https://test.httpapi.com/api/customers/generate-login-token.json?auth-userid=0&api-key=key&customer-id=0&ip=1.1.1.1

Response

Returns a token (String).

In case of any errors, a status key with value as ERROR alongwith an error message will be returned.

 
 

Loading...