Get memberships in groups by entity
GET/api/v2/Groups/Membership/:guidEntity
Get memberships in groups by entity
Request
Path Parameters
guidEntity guidrequired
Query Parameters
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
Array [
]
ContinuationToken stringnullable
Items
object[]
nullable
GroupGuid guid
IsDirectMember boolean
{
"ContinuationToken": "string",
"Items": [
{
"GroupGuid": "string",
"IsDirectMember": true
}
]
}
Error
- application/json
- Schema
- Example (from schema)
Schema
Error
object
required
Code stringnullable
Message stringnullable
{
"Error": {
"Code": "string",
"Message": "string"
}
}
Loading...