POST SecuritySystemAPI/Users/GetAllUsers/{GUID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
GUID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserInfo
NameDescriptionTypeAdditional information
UserID

globally unique identifier

None.

EMAIL

string

None.

ID_NO

string

None.

DEPARTMENT

string

None.

EMPLOYEE_NAME

string

None.

UserName

string

None.

CityID

globally unique identifier

None.

EMP_ID

string

None.

title

string

None.

Mobile_NO

string

None.

Admin

boolean

None.

IsSuspended

boolean

None.

SuperAdmin

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserID": "431a5e8e-4653-4a35-8fd0-d8c84e74d332",
    "EMAIL": "sample string 2",
    "ID_NO": "sample string 3",
    "DEPARTMENT": "sample string 4",
    "EMPLOYEE_NAME": "sample string 5",
    "UserName": "sample string 6",
    "CityID": "f59b4cd6-ad69-41e4-9a70-73f6487ab205",
    "EMP_ID": "sample string 8",
    "title": "sample string 9",
    "Mobile_NO": "sample string 10",
    "Admin": true,
    "IsSuspended": true,
    "SuperAdmin": true
  },
  {
    "UserID": "431a5e8e-4653-4a35-8fd0-d8c84e74d332",
    "EMAIL": "sample string 2",
    "ID_NO": "sample string 3",
    "DEPARTMENT": "sample string 4",
    "EMPLOYEE_NAME": "sample string 5",
    "UserName": "sample string 6",
    "CityID": "f59b4cd6-ad69-41e4-9a70-73f6487ab205",
    "EMP_ID": "sample string 8",
    "title": "sample string 9",
    "Mobile_NO": "sample string 10",
    "Admin": true,
    "IsSuspended": true,
    "SuperAdmin": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SecuritySystem.API.Models">
  <UserInfo>
    <Admin>true</Admin>
    <CityID>f59b4cd6-ad69-41e4-9a70-73f6487ab205</CityID>
    <DEPARTMENT>sample string 4</DEPARTMENT>
    <EMAIL>sample string 2</EMAIL>
    <EMPLOYEE_NAME>sample string 5</EMPLOYEE_NAME>
    <EMP_ID>sample string 8</EMP_ID>
    <ID_NO>sample string 3</ID_NO>
    <IsSuspended>true</IsSuspended>
    <Mobile_NO>sample string 10</Mobile_NO>
    <SuperAdmin>true</SuperAdmin>
    <UserID>431a5e8e-4653-4a35-8fd0-d8c84e74d332</UserID>
    <UserName>sample string 6</UserName>
    <title>sample string 9</title>
  </UserInfo>
  <UserInfo>
    <Admin>true</Admin>
    <CityID>f59b4cd6-ad69-41e4-9a70-73f6487ab205</CityID>
    <DEPARTMENT>sample string 4</DEPARTMENT>
    <EMAIL>sample string 2</EMAIL>
    <EMPLOYEE_NAME>sample string 5</EMPLOYEE_NAME>
    <EMP_ID>sample string 8</EMP_ID>
    <ID_NO>sample string 3</ID_NO>
    <IsSuspended>true</IsSuspended>
    <Mobile_NO>sample string 10</Mobile_NO>
    <SuperAdmin>true</SuperAdmin>
    <UserID>431a5e8e-4653-4a35-8fd0-d8c84e74d332</UserID>
    <UserName>sample string 6</UserName>
    <title>sample string 9</title>
  </UserInfo>
</ArrayOfUserInfo>