Get group members
List members of groups, one user may be in one or more groups
Query Parameters
- group string
filter list by a given group
- offset integer
Offset from start of dataset. Use with the limit query to iterate through dataset.
- limit integer
Default value:
20
Length of dataset to return. Use with offset query to iterate through results.
Responses
- 200
operation successful
- application/json
- Schema
- Example (from schema)
Schema
meta object
limit int32next stringoffset int32previous stringtotal_count int32total number of objects
objects object[]
created date-timegroup urimodified date-timepermission integerPossible values: [
1
,2
,3
,4
,5
,6
]Permissions options:
- 1 - administrator
- 2 - team docs visible, create & send
- 3 - team docs visible, send only
- 4 - no team sent docs visible, send only
- 5 - no team docs visible, create & send
- 6 - team docs visible, read only
resource_uri uriuser uri
{
"meta": {
"limit": 0,
"next": "string",
"offset": 0,
"previous": "string",
"total_count": 0
},
"objects": [
{
"created": "2020-05-20T:15:10",
"modified": "2020-05-20T:15:10",
"permission": 1,
"resource_uri": "/api/v1/member/m0m0m0m0-m0m0-m0m0-m0m0-m0m0m0m0m0m0/",
"user": "/api/v1/user/u0u0u0u0-u0u0-u0u0-u0u0-u0u0u0u0u0u0/"
}
]
}
Loading...