GET
/
workspaces
/
{workspace_id}
/
members
List Workspace Members
curl --request GET \
  --url https://api.altostrat.io/workspaces/{workspace_id}/members \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "user_id": "<string>",
      "workspace_id": "<string>",
      "role": "owner",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Auth0 JWT token for user authentication.

Path Parameters

workspace_id
string
required

The unique identifier for the workspace.

Example:

"ws_abc123"

Response

200 - application/json

A list of members in the workspace.

The response is of type object.