---
title: "List team members"
method: GET
path: "/team"
tags: ["Team"]
---

# List team members

`GET /team`

Lists the company owner, team members, and pending or expired invitations.

## Response `200`

Team members returned

- object
  - `success` boolean
  - `members` TeamMember[]
    - `id` string — Member or invitation ID. The owner entry uses the literal id "owner".
    - `kind` 'owner' | 'member' | 'invitation'
    - `userId` string, nullable
    - `role` 'owner' | 'admin' | 'viewer' | 'restricted'
    - `canManageBilling` boolean
    - `user` object
      - `id` string, nullable
      - `name` string, nullable
      - `email` string, email
      - `image` string, nullable
    - `status` 'joined' | 'pending' | 'expired'
    - `createdAt` string, date-time, nullable
    - `invitedAt` string, date-time, nullable
    - `expiresAt` string, date-time, nullable
    - `invitedBy` object, nullable
      - `id` string
      - `name` string, nullable
      - `email` string, email

## Other responses

- `401` — Unauthorized
- `403` — No access to this team
- `404` — Company not found

## Changes

- **2026-08-02** `36f92fc0caa2` — 3 breaking
  - the response property `success` became optional for the status `401`
  - the response property `success` became optional for the status `403`
  - the response property `success` became optional for the status `404`
- **2026-06-26** `b6ed7c5f90bc` — 1 warning
  - added the new `restricted` enum value to the `members/items/role` response property for the response status `200`
- **2026-06-11** `ad2d3114269a` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/sequenzy/apis/sequenzy-api/changes/team/get.md)

---

[API](https://skmtc.dev/sequenzy/apis/sequenzy-api.md) · [All operations](https://skmtc.dev/sequenzy/apis/sequenzy-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sequenzy/sequenzy-api/revisions/36f92fc0caa2/schema)
