POST api/Login/BaseGetAll

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Login
NameDescriptionTypeAdditional information
LoginId

globally unique identifier

None.

Timestamp

date

None.

UserName

string

None.

ImpersonatedUserName

string

None.

ApplicationName

string

None.

ChangeTracker

ObjectChangeTracker

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "LoginId": "3eafe979-d549-4c3a-b8ad-a81104e39dc3",
    "Timestamp": "2024-09-13T10:27:11.2201753+00:00",
    "UserName": "sample string 3",
    "ImpersonatedUserName": "sample string 4",
    "ApplicationName": "sample string 5",
    "ChangeTracker": {
      "$id": "2",
      "State": 2,
      "ObjectsRemovedFromCollectionProperties": {},
      "OriginalValues": {},
      "ExtendedProperties": {},
      "ObjectsAddedToCollectionProperties": {}
    }
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pioneer.Trials.Domain.Model">
  <Login z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
    <ApplicationName>sample string 5</ApplicationName>
    <ChangeTracker z:Id="i2">
      <ExtendedProperties />
      <ObjectsAddedToCollectionProperties />
      <ObjectsRemovedFromCollectionProperties />
      <OriginalValues />
      <State>Added</State>
    </ChangeTracker>
    <ImpersonatedUserName>sample string 4</ImpersonatedUserName>
    <LoginId>3eafe979-d549-4c3a-b8ad-a81104e39dc3</LoginId>
    <Timestamp>2024-09-13T10:27:11.2201753+00:00</Timestamp>
    <UserName>sample string 3</UserName>
  </Login>
  <Login z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
</ArrayOfLogin>