POST api/v1/Login

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

AuthenticationProperties
NameDescriptionTypeAdditional information
Dictionary

Dictionary of string [key] and string [value]

None.

IsPersistent

boolean

None.

RedirectUri

string

None.

IssuedUtc

date

None.

ExpiresUtc

date

None.

AllowRefresh

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Dictionary": {
    ".persistent": "",
    ".redirect": "sample string 2",
    ".issued": "Mon, 09 Feb 2026 22:50:44 GMT",
    ".expires": "Mon, 09 Feb 2026 22:50:44 GMT",
    ".refresh": "True"
  },
  "IsPersistent": true,
  "RedirectUri": "sample string 2",
  "IssuedUtc": "2026-02-09T23:50:44+01:00",
  "ExpiresUtc": "2026-02-09T23:50:44+01:00",
  "AllowRefresh": true
}

application/xml, text/xml

Sample:
<AuthenticationProperties xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Owin.Security">
  <AllowRefresh>true</AllowRefresh>
  <Dictionary xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>.persistent</d2p1:Key>
      <d2p1:Value></d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>.redirect</d2p1:Key>
      <d2p1:Value>sample string 2</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>.issued</d2p1:Key>
      <d2p1:Value>Mon, 09 Feb 2026 22:50:44 GMT</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>.expires</d2p1:Key>
      <d2p1:Value>Mon, 09 Feb 2026 22:50:44 GMT</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>.refresh</d2p1:Key>
      <d2p1:Value>True</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </Dictionary>
  <ExpiresUtc xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2026-02-09T22:50:44Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </ExpiresUtc>
  <IsPersistent>true</IsPersistent>
  <IssuedUtc xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2026-02-09T22:50:44Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </IssuedUtc>
  <RedirectUri>sample string 2</RedirectUri>
</AuthenticationProperties>