POST v3/members/login

authenticate a user with email and the hash of password; SHA256 is used for the hash of password for now, we allow sso user who have set a password in the site login through the api.

Request Information

Parameters

NameDescriptionAdditional information
inVO
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "schoolId": "sample string 1",
  "redirectUrlString": "sample string 2",
  "nParameter": "sample string 3",
  "forApp": true,
  "forMadness": 5,
  "email": "sample string 6",
  "password": "sample string 7",
  "curUserId": "sample string 8",
  "isSSO": true,
  "requestHost": "sample string 10",
  "applicationPath": "sample string 11",
  "secureApplicationPath": "sample string 12",
  "absoluteApplicationPath": "sample string 13",
  "isHttps": true,
  "isMobileDevice": true,
  "isFullEmbed": true,
  "clientType": 0,
  "clientVersion": "sample string 17",
  "clientOS": "sample string 18",
  "clientBuild": "sample string 19",
  "premiumAppId": "sample string 20",
  "clientWidth": 21,
  "clientHeight": 22,
  "timezone": 23
}

application/xml, text/xml

Sample:
<LoginInSchoolVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">
  <ClientHeight>22</ClientHeight>
  <ClientType>Site</ClientType>
  <ClientWidth>21</ClientWidth>
  <absoluteApplicationPath>sample string 13</absoluteApplicationPath>
  <applicationPath>sample string 11</applicationPath>
  <cachedKey>sample string 1</cachedKey>
  <clientBuild>sample string 19</clientBuild>
  <clientOS>sample string 18</clientOS>
  <clientVersion>sample string 17</clientVersion>
  <curUserId>sample string 8</curUserId>
  <isFullEmbed>true</isFullEmbed>
  <isHttps>true</isHttps>
  <isMobileDevice>true</isMobileDevice>
  <isSSO>true</isSSO>
  <premiumAppId>sample string 20</premiumAppId>
  <requestHost>sample string 10</requestHost>
  <secureApplicationPath>sample string 12</secureApplicationPath>
  <timezone>23</timezone>
  <Email>sample string 6</Email>
  <Password>sample string 7</Password>
  <ForApp>true</ForApp>
  <ForMadness>5</ForMadness>
  <NParameter>sample string 3</NParameter>
  <RedirectUrlString>sample string 2</RedirectUrlString>
  <SchoolId>sample string 1</SchoolId>
</LoginInSchoolVO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

the authenticated member object for the user

Response body formats

application/json, text/json

Sample:

Sample not available.