Skip to main content
GET /api/v1/members Requires members.read permission. Returns all members of the organization scoped to the current session.

Response

members
Member[]
required
Array of organization members.

Errors

StatusWhen
401Missing or invalid Bearer token
403Caller lacks members.read permission

Example

curl http://localhost:8080/api/v1/members \
  -H "Authorization: Bearer <token>"
{
  "members": [
    {
      "id": "m1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "user": {
        "id": "u1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "name": "Onur Kacmaz",
        "email": "[email protected]",
        "email_verified_at": "2026-01-15T09:05:00Z"
      },
      "role": {
        "id": "r1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "key": "owner",
        "name": "Owner",
        "is_system": true,
        "permissions": ["org.read", "org.update", "org.delete", "members.read"]
      },
      "created_at": "2026-01-15T09:00:00Z",
      "updated_at": "2026-01-15T09:00:00Z"
    }
  ]
}

Build docs developers (and LLMs) love