POST api/Login/BaseGetAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Login| Name | Description | Type | Additional 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": "43b20bb0-bf00-4116-9892-2a2bd4fabcd9",
"Timestamp": "2025-12-14T10:57:59.6703774+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>43b20bb0-bf00-4116-9892-2a2bd4fabcd9</LoginId>
<Timestamp>2025-12-14T10:57:59.6703774+00:00</Timestamp>
<UserName>sample string 3</UserName>
</Login>
<Login z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
</ArrayOfLogin>