[GET] List All Workspace Users

Retrieves a list of all users currently associated with the authenticated tenant and workspace.

All Users

GET/api/v1.0/external/sdworkspace/allusers/{workspaceId}

Example Request

curl -X 'GET' \
  'https://cloud.smartdocumentor.net/api/v1.0/external/sdworkspace/allusers/1' \
  --header 'Authorization: Bearer {your access token here}' \
  --header 'accept: application/json'

Responses

[
  {
    "id": 101,
    "roleName": "Manager",
    "name": "Name",
    "userName": "User Name",
    "email": "[email protected]",
    "createdAt": "2022-10-17T18:03:55Z",
    "emailConfirmed": true,
    "status": "Active"
  }
]

Response Body List<ExternalUserViewModel>

Response Body ExternalUserViewModel

Name
Type
Description

id

integer

Unique identifier of the user.

roleName

string

Name of the role assigned to the user.

name

string

Full name of the user.

userName

string

Username or login of the user.

email

string

Email address of the user.

createdAt

string

Timestamp indicating when the user was created in the tenant.

emailConfirmed

boolean

Indicates whether the user's email has been confirmed.

status

string

Current status of the user in the tenant (e.g., Active, Inactive, etc).

Last updated