GET api/FoxPass/groups/{GroupName}/Member

取得群組使用者

Request Information

URI Parameters

NameDescriptionTypeAdditional information
GroupName

群組名稱

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Users
NameDescriptionTypeAdditional information
username

string

None.

email

string

None.

uid

integer

None.

created

date

None.

gid

integer

None.

is_eng_user

boolean

None.

is_posix_user

boolean

None.

is_active

boolean

None.

active

boolean

None.

shell

Object

None.

first_name

string

None.

last_name

string

None.

github_username

Object

None.

custom_fields

Object

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "username": "sample string 1",
    "email": "sample string 2",
    "uid": 3,
    "created": "2025-05-03T01:11:58.9295564+00:00",
    "gid": 5,
    "is_eng_user": true,
    "is_posix_user": true,
    "is_active": true,
    "active": true,
    "shell": {},
    "first_name": "sample string 11",
    "last_name": "sample string 12",
    "github_username": {},
    "custom_fields": {}
  },
  {
    "username": "sample string 1",
    "email": "sample string 2",
    "uid": 3,
    "created": "2025-05-03T01:11:58.9295564+00:00",
    "gid": 5,
    "is_eng_user": true,
    "is_posix_user": true,
    "is_active": true,
    "active": true,
    "shell": {},
    "first_name": "sample string 11",
    "last_name": "sample string 12",
    "github_username": {},
    "custom_fields": {}
  }
]

application/xml, text/xml

Sample:
<ArrayOfFoxpassAPI.Users xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End">
  <FoxpassAPI.Users>
    <active>true</active>
    <created>2025-05-03T01:11:58.9295564+00:00</created>
    <custom_fields />
    <email>sample string 2</email>
    <first_name>sample string 11</first_name>
    <gid>5</gid>
    <github_username />
    <is_active>true</is_active>
    <is_eng_user>true</is_eng_user>
    <is_posix_user>true</is_posix_user>
    <last_name>sample string 12</last_name>
    <shell />
    <uid>3</uid>
    <username>sample string 1</username>
  </FoxpassAPI.Users>
  <FoxpassAPI.Users>
    <active>true</active>
    <created>2025-05-03T01:11:58.9295564+00:00</created>
    <custom_fields />
    <email>sample string 2</email>
    <first_name>sample string 11</first_name>
    <gid>5</gid>
    <github_username />
    <is_active>true</is_active>
    <is_eng_user>true</is_eng_user>
    <is_posix_user>true</is_posix_user>
    <last_name>sample string 12</last_name>
    <shell />
    <uid>3</uid>
    <username>sample string 1</username>
  </FoxpassAPI.Users>
</ArrayOfFoxpassAPI.Users>