POST members/verifylogintoken

verify the login request from the link in user's email

Request Information

Parameters

NameDescriptionAdditional information
inDto
email - user's email,
            token - the token generated,
            expiration - indicate when the request is expired

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "token": "sample string 2",
  "expiration": 3
}

application/xml, text/xml

Sample:
<VerifyLoginTokenInDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input">
  <email>sample string 1</email>
  <expiration>3</expiration>
  <token>sample string 2</token>
</VerifyLoginTokenInDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:

Sample not available.