POST api/Users/Login

Request Information

URI Parameters

None.

Body Parameters

UserLoginViewModel
NameDescriptionTypeAdditional information
ROWID

globally unique identifier

None.

UserID

integer

None.

UserName

string

None.

User_Status_Type

string

None.

Password

string

None.

ReTypePassword

string

None.

IsDeleted

boolean

None.

UserType

string

None.

FK_CountryID

integer

None.

NationalityNumberMask

string

None.

DrivingLicenseMask

string

None.

PassportMask

string

None.

NationalityLabel

string

None.

FirstLanguage

integer

None.

SecondLanguage

integer

None.

ProppertyPinLabel

string

None.

ProppertyPinMask

string

None.

Currency

string

None.

CountryCode

string

None.

FirstName

string

None.

LastName

string

None.

MiddleName

string

None.

EmailAddress

string

None.

DateOfBirth

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ROWID": "503d8fbc-6b54-47db-8f2b-d8ec907c7f2c",
  "UserID": 1,
  "UserName": "sample string 2",
  "User_Status_Type": "sample string 3",
  "Password": "sample string 4",
  "ReTypePassword": "sample string 5",
  "IsDeleted": true,
  "UserType": "sample string 6",
  "FK_CountryID": 7,
  "NationalityNumberMask": "sample string 8",
  "DrivingLicenseMask": "sample string 9",
  "PassportMask": "sample string 10",
  "NationalityLabel": "sample string 11",
  "FirstLanguage": 12,
  "SecondLanguage": 13,
  "ProppertyPinLabel": "sample string 14",
  "ProppertyPinMask": "sample string 15",
  "Currency": "sample string 16",
  "CountryCode": "sample string 17",
  "FirstName": "sample string 18",
  "LastName": "sample string 19",
  "MiddleName": "sample string 20",
  "EmailAddress": "sample string 21",
  "DateOfBirth": "2026-04-06T21:32:44.6977124-05:00"
}

application/xml, text/xml

Sample:
<UserLoginViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <CountryCode>sample string 17</CountryCode>
  <Currency>sample string 16</Currency>
  <DateOfBirth>2026-04-06T21:32:44.6977124-05:00</DateOfBirth>
  <DrivingLicenseMask>sample string 9</DrivingLicenseMask>
  <EmailAddress>sample string 21</EmailAddress>
  <FK_CountryID>7</FK_CountryID>
  <FirstLanguage>12</FirstLanguage>
  <FirstName>sample string 18</FirstName>
  <IsDeleted>true</IsDeleted>
  <LastName>sample string 19</LastName>
  <MiddleName>sample string 20</MiddleName>
  <NationalityLabel>sample string 11</NationalityLabel>
  <NationalityNumberMask>sample string 8</NationalityNumberMask>
  <PassportMask>sample string 10</PassportMask>
  <Password>sample string 4</Password>
  <ProppertyPinLabel>sample string 14</ProppertyPinLabel>
  <ProppertyPinMask>sample string 15</ProppertyPinMask>
  <ROWID>503d8fbc-6b54-47db-8f2b-d8ec907c7f2c</ROWID>
  <ReTypePassword>sample string 5</ReTypePassword>
  <SecondLanguage>13</SecondLanguage>
  <UserID>1</UserID>
  <UserName>sample string 2</UserName>
  <UserType>sample string 6</UserType>
  <User_Status_Type>sample string 3</User_Status_Type>
</UserLoginViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>