GET api/LoginApi/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Login
NameDescriptionTypeAdditional information
Id

integer

None.

Username

string

None.

Password

string

None.

UserTypeLookupId

integer

None.

UserParentId

integer

None.

UserStatus

boolean

None.

CreatedDate

date

None.

CreatedBy

string

None.

UpdatedDate

date

None.

UpdateBy

string

None.

Role

string

None.

Message

string

None.

MobileNo

string

None.

IsOTP

boolean

None.

IsOTPMessage

string

None.

OTPCode

integer

None.

OTPUser

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Username": "sample string 2",
  "Password": "sample string 3",
  "UserTypeLookupId": 1,
  "UserParentId": 1,
  "UserStatus": true,
  "CreatedDate": "2026-03-14T19:50:30.092684+05:00",
  "CreatedBy": "sample string 4",
  "UpdatedDate": "2026-03-14T19:50:30.092684+05:00",
  "UpdateBy": "sample string 5",
  "Role": "sample string 6",
  "Message": "sample string 7",
  "MobileNo": "sample string 8",
  "IsOTP": true,
  "IsOTPMessage": "sample string 10",
  "OTPCode": 11,
  "OTPUser": "sample string 12"
}

application/xml, text/xml

Sample:
<Login xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMS.DataModels">
  <CreatedBy>sample string 4</CreatedBy>
  <CreatedDate>2026-03-14T19:50:30.092684+05:00</CreatedDate>
  <Id>1</Id>
  <IsOTP>true</IsOTP>
  <IsOTPMessage>sample string 10</IsOTPMessage>
  <Message>sample string 7</Message>
  <MobileNo>sample string 8</MobileNo>
  <OTPCode>11</OTPCode>
  <OTPUser>sample string 12</OTPUser>
  <Password>sample string 3</Password>
  <Role>sample string 6</Role>
  <UpdateBy>sample string 5</UpdateBy>
  <UpdatedDate>2026-03-14T19:50:30.092684+05:00</UpdatedDate>
  <UserParentId>1</UserParentId>
  <UserStatus>true</UserStatus>
  <UserTypeLookupId>1</UserTypeLookupId>
  <Username>sample string 2</Username>
</Login>