GET api/SystemUsers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SystemUsers
NameDescriptionTypeAdditional information
UserId

string

None.

Password

string

None.

FullName

string

None.

StartLocationCompanyId

string

None.

AllComps

string

None.

AllFuncs

string

None.

SystemUsersId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserId": "sample string 1",
    "Password": "sample string 2",
    "FullName": "sample string 3",
    "StartLocationCompanyId": "sample string 4",
    "AllComps": "sample string 5",
    "AllFuncs": "sample string 6",
    "SystemUsersId": 7
  },
  {
    "UserId": "sample string 1",
    "Password": "sample string 2",
    "FullName": "sample string 3",
    "StartLocationCompanyId": "sample string 4",
    "AllComps": "sample string 5",
    "AllFuncs": "sample string 6",
    "SystemUsersId": 7
  }
]

application/xml, text/xml

Sample:
<ArrayOfSystemUsers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EGas.DataAccess">
  <SystemUsers>
    <AllComps>sample string 5</AllComps>
    <AllFuncs>sample string 6</AllFuncs>
    <FullName>sample string 3</FullName>
    <Password>sample string 2</Password>
    <StartLocationCompanyId>sample string 4</StartLocationCompanyId>
    <SystemUsersId>7</SystemUsersId>
    <UserId>sample string 1</UserId>
  </SystemUsers>
  <SystemUsers>
    <AllComps>sample string 5</AllComps>
    <AllFuncs>sample string 6</AllFuncs>
    <FullName>sample string 3</FullName>
    <Password>sample string 2</Password>
    <StartLocationCompanyId>sample string 4</StartLocationCompanyId>
    <SystemUsersId>7</SystemUsersId>
    <UserId>sample string 1</UserId>
  </SystemUsers>
</ArrayOfSystemUsers>