Skip to main content
GET
/
v1
/
organizations
/
{organizationId}
/
groups
/
{groupId}
/
users
List Organization Group Users
curl --request GET \
  --url https://live.copilot.fabric.inc/data-customer/v1/organizations/{organizationId}/groups/{groupId}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'x-site-context: <x-site-context>'
{
  "query": {
    "offset": 0,
    "limit": 10,
    "count": 56
  },
  "data": [
    {
      "_id": "61604a30fdfacd0009816e44",
      "username": "TEST_USER_5554",
      "userId": "user_123",
      "title": "Mr",
      "firstName": "John",
      "lastName": "Smith",
      "email": "+1 4534534534",
      "primaryPhone": "+1 345345345",
      "status": "ACTIVE",
      "role": "reporter",
      "additionalAttributes": {},
      "groupId": "61604a30fdfacd0009816e46",
      "isDeleted": false,
      "createdAt": "2021-08-30T23:20:42.822Z",
      "updatedAt": "2021-08-30T23:20:42.822Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Headers

x-site-context
string
required
Example:

Path Parameters

organizationId
string
required
Example:
groupId
string
required
Example:

Query Parameters

offset
integer
Example:
limit
integer
Example:
sortOrder
enum<string>
Available options:
asc,
desc
Example:
sortBy
enum<string>
Available options:
updatedAt,
username,
firstName,
lastName,
email,
role,
status
Example:
Example:
username
string
Example:

Response

query
object
data
OrganizationUserResponse · object[]