Skip to main content
GET
/
api
/
v1
/
workspaces
/
{id}
/
members
List workspace members
curl --request GET \
  --url https://api.dualship.run/api/v1/workspaces/{id}/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "joined_at": "2024-01-15T10:30:00Z",
      "role": {
        "id": "550e8400-e29b-41d4-a716-446655440002",
        "name": "admin"
      },
      "user": {
        "avatar_url": "https://cdn.example.com/avatar.png",
        "email": "john@example.com",
        "first_name": "John",
        "id": "550e8400-e29b-41d4-a716-446655440001",
        "last_name": "Doe"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualship.run/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

Workspace ID

Response

List of members

List of workspace members

members
object[]