POST api/account/login

Request Information

URI Parameters

None.

Body Parameters

LoginViewModel
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Password

string

None.

Email

string

None.

LastLoginDate

date

None.

username

string

None.

ResetPasswordOtp

integer

None.

SubscriptionStartDate

date

None.

SubscriptionEndDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "41e66aae-55db-4e3d-86c2-6c843813d862",
  "Password": "sample string 2",
  "Email": "sample string 3",
  "LastLoginDate": "2024-04-26T13:59:57.9980644-07:00",
  "username": "sample string 5",
  "ResetPasswordOtp": 6,
  "SubscriptionStartDate": "2024-04-26T13:59:57.9980644-07:00",
  "SubscriptionEndDate": "2024-04-26T13:59:57.9980644-07:00"
}

text/html

Sample:
{"UserId":"41e66aae-55db-4e3d-86c2-6c843813d862","Password":"sample string 2","Email":"sample string 3","LastLoginDate":"2024-04-26T13:59:57.9980644-07:00","username":"sample string 5","ResetPasswordOtp":6,"SubscriptionStartDate":"2024-04-26T13:59:57.9980644-07:00","SubscriptionEndDate":"2024-04-26T13:59:57.9980644-07:00"}

application/xml, text/xml

Sample:
<LoginViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SingersBabel.BAL.ViewModel">
  <Email>sample string 3</Email>
  <LastLoginDate>2024-04-26T13:59:57.9980644-07:00</LastLoginDate>
  <Password>sample string 2</Password>
  <ResetPasswordOtp>6</ResetPasswordOtp>
  <SubscriptionEndDate>2024-04-26T13:59:57.9980644-07:00</SubscriptionEndDate>
  <SubscriptionStartDate>2024-04-26T13:59:57.9980644-07:00</SubscriptionStartDate>
  <UserId>41e66aae-55db-4e3d-86c2-6c843813d862</UserId>
  <Username>sample string 5</Username>
</LoginViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.