GET api/acrservers/{serverName}/helpdeskusers2

Retrieves helpdesk users for a server.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
serverName

The name of the server for the requested configuration.

string

Required

Body Parameters

None.

Response Information

Resource Description

server configuration for the specified server.

ServerUserList
NameDescriptionTypeAdditional information
Users

List of user data for the server

Collection of ServerUser

None.

Response Formats

application/json, text/json

Sample:
{
  "Users": [
    {
      "Login": "sample string 1",
      "Password": "sample string 2",
      "FirstName": "sample string 3",
      "LastName": "sample string 4"
    },
    {
      "Login": "sample string 1",
      "Password": "sample string 2",
      "FirstName": "sample string 3",
      "LastName": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<ServerUserList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Users>
    <ServerUser>
      <Login>sample string 1</Login>
      <Password>sample string 2</Password>
      <FirstName>sample string 3</FirstName>
      <LastName>sample string 4</LastName>
    </ServerUser>
    <ServerUser>
      <Login>sample string 1</Login>
      <Password>sample string 2</Password>
      <FirstName>sample string 3</FirstName>
      <LastName>sample string 4</LastName>
    </ServerUser>
  </Users>
</ServerUserList>