GET v1/LocalUsers/{identityId}

User roles allowed to make this request: DomainAdministrator LocalDomainManager

Permissions required to make this request: User.Read

Returns details for a local user.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
identityId

string

Required

Body Parameters

None.

Response Information

Resource Description

Response Message

LocalUserResponseV1Model
NameDescriptionTypeAdditional information
Id

Unique Id of user

string

None.

UserName

User name

string

None.

LastLogonDate

Last date the user entered the Nfield system

date

None.

FirstName

First name of user

string

None.

LastName

Last name of user

string

None.

Email

Email of the user

string

None.

UserRole

Role of the user

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "UserName": "sample string 2",
  "LastLogonDate": "2024-05-17T20:03:23.2729589+00:00",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "Email": "sample string 5",
  "UserRole": "sample string 6"
}

application/xml, text/xml

Sample:
<LocalUserResponseV1Model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models">
  <Email>sample string 5</Email>
  <FirstName>sample string 3</FirstName>
  <LastName>sample string 4</LastName>
  <UserRole>sample string 6</UserRole>
  <Id>sample string 1</Id>
  <LastLogonDate>2024-05-17T20:03:23.2729589+00:00</LastLogonDate>
  <UserName>sample string 2</UserName>
</LocalUserResponseV1Model>