Retrieves all members of a place group
Use this endpoint to get the list of places that belong to a specific group.
When limitMembersByTopmost is enabled on the group or alwaysLimitByTopmost is true,
only members within the current user’s topmost place hierarchy are returned.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| placeGroupId | Unique numeric identifier of the place group | integer (int32) | Required |
Query Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| alwaysLimitByTopmost | When true, restricts results to members within the user’s topmost regardless of group settings. When false (default), uses the group’s limitMembersByTopmost setting. | boolean | Optional |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
GroupPlaceGroupMember
| Property | Description | Type | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| includeInCharts | The flag determining whether the place is included in group charts Required (defined) | boolean | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| parent | PlaceChild | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
PlaceChild properties
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| placeCode | The place code Required (defined) | string | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| placeId | The place identifier Required (defined) | integer (int32) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| placeInfo | The place info Required (defined) | string | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| placeType | PlaceTypeResponse | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
PlaceTypeResponse properties
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example Response
[
{ "includeInCharts": false, "parent": { "isDataRolledUp": false, "placeCode": "string", "placeId": 1, "placeInfo": "string", "placeType": {}
}, "placeCode": "string", "placeId": 1, "placeInfo": "string", "placeType": { "icon": {}, "isSystemPlaceType": false, "placeEntityType": {}, "placeTypeCode": "string", "placeTypeId": 1, "placeTypeInfo": "string", "structure": false
}
}
]
404
Not Found
The requested resource was not found. Verify the ID or path is correct.