---
title: "List team members"
method: GET
path: "/teams/{team_id}/members"
tags: ["Teams"]
---

# List team members

`GET /teams/{team_id}/members`

Retrieves a list of users associated with a single team.

## Query parameters

- `page[before]` string
- `page[after]` string
- `sort` 'created_at' | '-created_at' | 'updated_at' | '-updated_at'

## Response `200`

OK

- object
  - `items` TeamMember[]
    - `team_id` string, ulid — The ID of the team.
    - `user_id` string, uuid — The ID of the user.
    - `created_at` string, date-time — The date and time when the team member was created.
    - `updated_at` string, date-time — The date and time when the team member was last updated.
  - `_links` ListLinks
    - `self` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `previous` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `next` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link

## Other responses

- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/upsun/apis/upsun-com-rest-api.md) · [All operations](https://skmtc.net/upsun/apis/upsun-com-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/upsun/upsun-com-rest-api/revisions/6cc88fde6435/schema)
