Organizations
ListOrganizationMembers
API
My Account
- Overview
- GETGetAuthenticatedUser
- POSTRegisterUser
- PUTCreateEmailOneTimePasscode
- GETGetEmailVerificationStatus
- GETListMyAvailableOrganizations
- POSTJoinOrganization
- DELDeleteMe
- GETcreateWarehouseCredentials
- POSTupdateWarehouseCredentials
- DELdeleteWarehouseCredentials
- PATCHupdateWarehouseCredentials
- GETgetLoginOptions
- PATCHRotate personal access token
Organizations
- Overview
- GETGetMyOrganization
- PUTCreateOrganization
- PATCHUpdateMyOrganization
- DELDeleteMyOrganization
- GETListOrganizationProjects
- GETListOrganizationMembers
- GETGetOrganizationMemberByUuid
- DELDeleteOrganizationMember
- GETListOrganizationEmailDomains
- PATCHUpdateOrganizationEmailDomains
- GETListGroupsInOrganization
- POSTCreateGroupInOrganization
Projects
- Overview
- GETGetExplores
- PUTSetExplores
- GETGetExplore
- POSTCompileQuery
- POSTDownloadCsvFromExplore
- GETGetProject
- GETListChartsInProject
- GETListChartSummariesInProject `Deprecated`
- GETListSpacesInProject
- GETGetProjectAccessList
- POSTCalculateTotalFromQuery
- GETgetUserWarehouseCredentialsPreference
- PATCHupdateUserWarehouseCredentialsPreference
- GETgetCustomMetrics
- PATCHupdateProjectMetadata
- DELdeleteProjectSemanticLayerConnection
- PATCHupdateProjectSemanticLayerConnection
- GETgetDashboards
- POSTcreateDashboard
- PATCHupdateDashboards
- POSTcreatePreview
- PATCHPatch apiv1projects schedulersettings
- GETgetTags
- POSTcreateTag
- DELdeleteTag
- PATCHupdateTag
- GETgetChartsAsCode
- GETgetDashboardsAsCode
- POSTupsertChartAsCode
- POSTupsertDashboardAsCode
- GETGetLatestValidationResults
- POSTValidateProject
- DELDeleteValidationDismiss
Roles & Permissions
- PATCHUpdateOrganizationMember
- POSTCreateSpaceInProject
- GETGet apiv1projects access
- POSTGetProjectAccessList
- GETGetProjectMemberAccess
- DELRevokeProjectAccessForUser
- PATCHGrantProjectAccessToUser
- PATCHUpdateSpace
- POSTAddSpaceUserAccess
- DELRevokeSpaceAccessForUser
- POSTAddSpaceGroupAccess
- DELRevokeGroupSpaceAccess
Catalog
- GETgetCatalog
- GETgetMetadata
- GETgetAnalytics
- GETgetAnalyticsField
- GETgetMetricsCatalog
- GETgetMetric
- GETgetMetricsWithTimeDimensions
- GETgetSegmentDimensions
- POSTaddCategoryToCatalogItem
- DELremoveCategoryFromCatalogItem
- PATCHupdateCatalogItemIcon
- GETgetMetricsTree
- POSTcreateMetricsTreeEdge
- DELdeleteMetricsTreeEdge
Exports
Git Integration
User Groups
Metrics Explorer
Notifications
Charts
Schedulers
Share links
SSH Keypairs
Organizations
ListOrganizationMembers
Gets all the members of the current user’s organization
GET
/
api
/
v1
/
org
/
users
{
"results": {
"pagination": {
"page": 123,
"pageSize": 123,
"totalResults": 123,
"totalPageCount": 123
},
"data": [
{
"isPending": true,
"isInviteExpired": true,
"isActive": true,
"role": "member",
"organizationUuid": "<string>",
"email": "<string>",
"lastName": "<string>",
"firstName": "<string>",
"userUpdatedAt": "2023-11-07T05:31:56Z",
"userCreatedAt": "2023-11-07T05:31:56Z",
"userUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
},
"status": "ok"
}
Query Parameters
filter users who can view this project
Response
200
application/json
Ok
Profile for a user's membership in an organization
Whether the user can login
The role of the user in the organization
Available options:
member
, viewer
, interactive_viewer
, editor
, developer
, admin
Unique identifier for the organization the user is a member of
Unique identifier for the user
Whether the user doesn't have an authentication method (password or openId)
Whether the user's invite to the organization has expired
Available options:
ok
{
"results": {
"pagination": {
"page": 123,
"pageSize": 123,
"totalResults": 123,
"totalPageCount": 123
},
"data": [
{
"isPending": true,
"isInviteExpired": true,
"isActive": true,
"role": "member",
"organizationUuid": "<string>",
"email": "<string>",
"lastName": "<string>",
"firstName": "<string>",
"userUpdatedAt": "2023-11-07T05:31:56Z",
"userCreatedAt": "2023-11-07T05:31:56Z",
"userUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
},
"status": "ok"
}