---
title: "Get member status"
method: POST
path: "/v1/teams/getMemberStatus"
tags: ["Team"]
---

# Get member status

`POST /v1/teams/getMemberStatus`

Retrieves a list of team members with their current activity status. Shows whether members are actively working (have a running timer) and their last activity. Results are automatically sorted with currently working members appearing first, followed by idle members, all alphabetically by name.

## Request body

- MemberStatusParams
  - `search` string
  - `sort` string
  - `order` string
  - `count` integer
  - `page` integer
  - `limit` integer
  - `organizationId` string
  - `teamId` string
  - `projectId` string
  - `userIds` string[]
  - `status` string
  - `offset` integer

## Response `200`

List of members with their activity status

- MemberStatusList
  - `items` Member[]
    - `uid` string
    - `firstname` string
    - `lastname` string
    - `email` string
    - `employeeId` string
    - `imageUrl` string
    - `deleted` boolean
    - `activity` Activity
      - `projectId` string
      - `projectTitle` string
      - `projectColor` integer
      - `taskId` string
      - `startDateTime` string
      - `endDateTime` string
      - `location` string
      - `running` boolean
    - `displayName` string
    - `initials` string
  - `params` MemberStatusParams
    - `search` string
    - `sort` string
    - `order` string
    - `count` integer
    - `page` integer
    - `limit` integer
    - `organizationId` string
    - `teamId` string
    - `projectId` string
    - `userIds` string[]
    - `status` string
    - `offset` integer

## Other responses

- `401` — Not authorized to view member status

---

[API](https://skmtc.net/timesheet/apis/timesheet-api.md) · [All operations](https://skmtc.net/timesheet/apis/timesheet-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/timesheet/timesheet-api/revisions/5bc49bf02dad/schema)
