POST api/members/login

Request Information

URI Parameters

None.

Body Parameters

LoginObject
NameDescriptionTypeAdditional information
Token

string

None.

OTP

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "OTP": 2
}

text/html

Sample:
{"Token":"sample string 1","OTP":2}

application/xml, text/xml

Sample:
<LoginObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MembershipAPI">
  <OTP>2</OTP>
  <Token>sample string 1</Token>
</LoginObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

M_PreLoginApp
NameDescriptionTypeAdditional information
ID

integer

None.

MemberID

integer

None.

TempGuID

string

None.

OTP

integer

None.

ExpiresOn

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "MemberID": 1,
  "TempGuID": "sample string 2",
  "OTP": 1,
  "ExpiresOn": "2026-03-10T14:38:04.6338437-07:00"
}

text/html

Sample:
{"ID":1,"MemberID":1,"TempGuID":"sample string 2","OTP":1,"ExpiresOn":"2026-03-10T14:38:04.6338437-07:00"}

application/xml, text/xml

Sample:
<M_PreLoginApp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MembershipAPI.Models">
  <ExpiresOn>2026-03-10T14:38:04.6338437-07:00</ExpiresOn>
  <ID>1</ID>
  <MemberID>1</MemberID>
  <OTP>1</OTP>
  <TempGuID>sample string 2</TempGuID>
</M_PreLoginApp>