Workspace Memberships
List Workspace Memberships
AskUI Suite
- ADE
- AskUIOCRTeaching
- AskUIRemoteDeviceSnippingTool
- AskUIRunnerManager
- AskUIWindowsTools
- PxProxy
- Python
- UIController
Workspace Services API
- Access Tokens
- Agent Executions
- Agents
- Billing
- Files
- Runner Jobs
- Runs
- Schedules
- Usage
- Workspace Memberships
- Workspaces
Workspace Memberships
List Workspace Memberships
GET
/
api
/
v1
/
workspace-memberships
{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"privileges": [
"ROLE_WORKSPACE_OWNER"
],
"user": {
"id": "<string>",
"email": "jsmith@example.com",
"name": "<string>",
"picture": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"emailVerified": true
},
"userId": "<string>",
"workspace": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>"
},
"workspaceId": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Available options:
user
, workspace
Response
200
application/json
Successful Response
Available options:
ROLE_WORKSPACE_OWNER
, ROLE_WORKSPACE_ADMIN
, ROLE_WORKSPACE_MEMBER
{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"privileges": [
"ROLE_WORKSPACE_OWNER"
],
"user": {
"id": "<string>",
"email": "jsmith@example.com",
"name": "<string>",
"picture": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"emailVerified": true
},
"userId": "<string>",
"workspace": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>"
},
"workspaceId": "<string>"
}
]
}