Get list of group members
Get list of group members
Query Parameters
- Groups guid[]
- GroupsOnly boolean
- ExpandGroups boolean
Get all group members
- ContinuationToken string
Token is needed, unless all records have been returned in previous request. Do not forget to pass also all other parameters.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (from schema)
Schema
- ContinuationToken string nullable
Items object[] nullable
Array [GroupGuid guidMemberGuid guidMemberType EntityTypePossible values: [
Person
,Group
,Contract
,Activity
,Vehicle
,TimeTracking
,EventLog
,Expenses
]]
{
"ContinuationToken": "string",
"Items": [
{
"GroupGuid": "string",
"MemberGuid": "string",
"MemberType": "Person"
}
]
}
Error
- application/json
- Schema
- Example (from schema)
Schema
Error object required
Code string nullableMessage string nullable
{
"Error": {
"Code": "string",
"Message": "string"
}
}
Loading...