GET
/
workspaces
/
{id}
/
members
List workspace members
curl --request GET \
  --url https://api.steuerboard.com/v1/workspaces/{id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'x-client-id: <x-client-id>'
[
  {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "workspaceId": "<string>",
    "isMuted": true,
    "userId": "<string>",
    "user": {
      "id": "<string>",
      "email": "<string>",
      "firstName": "<string>",
      "lastName": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer token authentication

Headers

x-client-id
string<cuid>
required

The ID of the client

Example:

"cmf41ajzv003706un4i99q19z"

Path Parameters

id
string<cuid>
required

The ID of the item

Example:

"cmf41ajzv003706un4i99q19z"

Response

Workspace members

createdAt
string
required
updatedAt
string
required
workspaceId
string
required
isMuted
boolean
required
userId
string
required
user
object