POST api/Account/Login
Request Information
URI Parameters
None.
Body Parameters
UserModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| EmailAddress | string |
None. |
|
| DateOfJoing | date |
None. |
|
| ErrorMessage | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "1ebae65a-339d-4465-b6c6-f693048c68fb",
"Username": "sample string 2",
"Password": "sample string 3",
"EmailAddress": "sample string 4",
"DateOfJoing": "2026-01-31T15:40:01.0834593-05:00",
"ErrorMessage": "sample string 6"
}
application/xml, text/xml
Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IISWebsiteReporterAPI2.Models"> <DateOfJoing>2026-01-31T15:40:01.0834593-05:00</DateOfJoing> <EmailAddress>sample string 4</EmailAddress> <ErrorMessage>sample string 6</ErrorMessage> <Password>sample string 3</Password> <UserId>1ebae65a-339d-4465-b6c6-f693048c68fb</UserId> <Username>sample string 2</Username> </UserModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.