List members of a group
Returns an empty array if the GUID is not a group or has no members. 404 if the GUID does not exist.
Request
Method: GET
Path: /api/entities/{guid}/members
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| guid | string | path | Yes | |
| undefined | string | undefined | No |
Responses
200 - Members
404 - Entity not found or not a group
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/entities/{guid}/members
JavaScript
const response = await fetch('http://localhost:3000/api/entities/{guid}/members', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.