GET api/users/{UserName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserName

string

Required

Body Parameters

None.

Response Information

Resource Description

User
NameDescriptionTypeAdditional information
UserName

string

None.

Password

string

None.

FullName

string

None.

RescId

integer

None.

DeptId

integer

None.

SupervisorRescId

integer

None.

Roles

Collection of string

None.

RescDescription

string

None.

PasswordValidationPeriod

integer

None.

PasswordExpirationDate

date

None.

PasswordMinLenght

integer

None.

PasswordStrictFormat

boolean

None.

IsActive

boolean

None.

MaxLoginAttempts

integer

None.

CurrentLoginAttempts

integer

None.

LastLoginDate

date

None.

LastLogoutDate

date

None.

LastLoginHostName

string

None.

DefaultLanguageId

integer

None.

DefaultPropertyId

integer

None.

FMUOperatorCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Password": "sample string 2",
  "FullName": "sample string 3",
  "RescId": 4,
  "DeptId": 5,
  "SupervisorRescId": 6,
  "Roles": [
    "sample string 1",
    "sample string 2"
  ],
  "RescDescription": "sample string 7",
  "PasswordValidationPeriod": 8,
  "PasswordExpirationDate": "2026-03-13T07:13:44.6893247+02:00",
  "PasswordMinLenght": 10,
  "PasswordStrictFormat": true,
  "IsActive": true,
  "MaxLoginAttempts": 13,
  "CurrentLoginAttempts": 14,
  "LastLoginDate": "2026-03-13T07:13:44.6893247+02:00",
  "LastLogoutDate": "2026-03-13T07:13:44.6893247+02:00",
  "LastLoginHostName": "sample string 17",
  "DefaultLanguageId": 18,
  "DefaultPropertyId": 19,
  "FMUOperatorCode": "sample string 20"
}

application/xml, text/xml

Sample:
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <CurrentLoginAttempts>14</CurrentLoginAttempts>
  <DefaultLanguageId>18</DefaultLanguageId>
  <DefaultPropertyId>19</DefaultPropertyId>
  <DeptId>5</DeptId>
  <FMUOperatorCode>sample string 20</FMUOperatorCode>
  <FullName>sample string 3</FullName>
  <IsActive>true</IsActive>
  <LastLoginDate>2026-03-13T07:13:44.6893247+02:00</LastLoginDate>
  <LastLoginHostName>sample string 17</LastLoginHostName>
  <LastLogoutDate>2026-03-13T07:13:44.6893247+02:00</LastLogoutDate>
  <MaxLoginAttempts>13</MaxLoginAttempts>
  <Password>sample string 2</Password>
  <PasswordExpirationDate>2026-03-13T07:13:44.6893247+02:00</PasswordExpirationDate>
  <PasswordMinLenght>10</PasswordMinLenght>
  <PasswordStrictFormat>true</PasswordStrictFormat>
  <PasswordValidationPeriod>8</PasswordValidationPeriod>
  <RescDescription>sample string 7</RescDescription>
  <RescId>4</RescId>
  <Roles xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Roles>
  <SupervisorRescId>6</SupervisorRescId>
  <UserName>sample string 1</UserName>
</User>