POST api/Login?validUntilMinuteSpan={validUntilMinuteSpan}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
validUntilMinuteSpan

integer

Required

Body Parameters

UsrUserRow
NameDescriptionTypeAdditional information
Id

integer

Required

AppId

integer

Required

RowGuid

globally unique identifier

Required

Name

string

None.

Password

string

None.

Active

boolean

Required

Email

string

None.

Firstname

string

None.

Lastname

string

None.

AuthType

integer

Required

MultiFactorRequired

integer

Required

Custom1

string

None.

Custom2

string

None.

Abbreviation

string

None.

Phone

string

None.

Mobile

string

None.

Fax

string

None.

JobTitle

string

None.

Branch

string

None.

RowError

string

None.

RowState

DataRowState

Required

Table

DataTable

None.

Item

Object

None.

Item

Object

None.

Item

Object

None.

Item

Object

None.

Item

Object

None.

Item

Object

None.

ItemArray

Collection of Object

None.

HasErrors

boolean

Required

Request Formats

application/json, text/json, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SpaAuthApp
NameDescriptionTypeAdditional information
Id

integer

None.

AuthKey

string

None.

UserId

integer

None.

IsValid

boolean

None.

LoginTime

date

None.

ValidUntil

date

None.

LogoutTime

date

None.

MultiFactorState

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "AuthKey": "sample string 1",
  "UserId": 1,
  "IsValid": true,
  "LoginTime": "2026-04-25T11:25:39.7308663+02:00",
  "ValidUntil": "2026-04-25T11:25:39.7308663+02:00",
  "LogoutTime": "2026-04-25T11:25:39.7308663+02:00",
  "MultiFactorState": 1
}

application/xml, text/xml

Sample:
<SpaAuth xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <AuthKey>sample string 1</AuthKey>
  <Id>1</Id>
  <IsValid>true</IsValid>
  <LoginTime>2026-04-25T11:25:39.7308663+02:00</LoginTime>
  <LogoutTime>2026-04-25T11:25:39.7308663+02:00</LogoutTime>
  <MultiFactorState>1</MultiFactorState>
  <UserId>1</UserId>
  <ValidUntil>2026-04-25T11:25:39.7308663+02:00</ValidUntil>
</SpaAuth>