Organization Users
Get organization users groups report
Returns a report of all users in your organization with their group memberships. This endpoint returns all users without pagination and always includes group information. The report can be retrieved in JSON or CSV format by sending specific content-type headers.
get/organizations/users/users_groups_report
Headers
Accept'application/json' | 'text/csv'
Specify the response format. Use 'application/json' for JSON format or 'text/csv' for CSV format.
Response
Successful response with a list of organization users and their group memberships.
Example response
{
"data": [
{
"created_at": "2018-02-02T22:25:27.521Z",
"email": "user@example.com",
"groups": [
{
"id": "7b09cdc3-8948-47f0-aa62-74ac943d6c59",
"name": "Engineering"
}
],
"id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"last_sign_in_at": "2018-02-02T22:25:27.521Z",
"organization_user_bypasses_sso": false,
"record_type": "organization_sub_user",
"user_status": "enabled"
}
]
}