GET api/v1/Login/GetUserLoginStatus?tenantId={tenantId}&loginId={loginId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tenantId

integer

Required

loginId

string

Required

version

string

None.

Body Parameters

None.

Response Information

Resource Description

UserLoginStatus
NameDescriptionTypeAdditional information
IsActive

boolean

None.

IsLocked

boolean

None.

LockType

string

None.

DeviceCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "IsActive": true,
  "IsLocked": true,
  "LockType": "sample string 3",
  "DeviceCount": 4
}

text/html

Sample:
{"IsActive":true,"IsLocked":true,"LockType":"sample string 3","DeviceCount":4}

text/xml

Sample:
<UserLoginStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Entities.Model">
  <DeviceCount>4</DeviceCount>
  <IsActive>true</IsActive>
  <IsLocked>true</IsLocked>
  <LockType>sample string 3</LockType>
</UserLoginStatus>