---
title: Fetch a single member of the workspace
description: Returns one member of the workspace.
api_method: GET
api_path: "/v1/workspaces/{workspaceId}/members/{memberId}"
canonical_url: https://wiblo.app/docs/developers/api/members/get-workspace-member
last_updated: 2026-08-03T21:24:33+02:00
md_url: https://wiblo.app/docs/developers/api/members/get-workspace-member.md
---

# Fetch a single member of the workspace

`GET /v1/workspaces/{workspaceId}/members/{memberId}`

Returns one member of the workspace. Available to any active member; cross-workspace member ids collapse onto the same `MEMBER_NOT_FOUND` 404 as a non-existent id, and a non-member of the workspace receives the resolver's `WORKSPACE_NOT_FOUND` 404 first. `MemberResponse.email` reflects `workspace_members.email` exactly — never `auth.users.email`. Per-user rate-limited at 60/60s.

## Path parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `workspaceId` | `string` | Yes |  |
| `memberId` | `string` | Yes |  |

## Request

**curl**

```bash
curl https://api.wiblo.app/v1/workspaces/{workspaceId}/members/{memberId} \
  -H "Authorization: Bearer $WIBLO_TOKEN"
```

**TypeScript**

```ts
import { createSdk, getWorkspaceMember } from "@workspace/sdk"

const sdk = createSdk({ baseUrl: "https://api.wiblo.app" })

const { data, error } = await getWorkspaceMember({
  client: sdk,
  path: { workspaceId: "...", memberId: "..." },
})
```

## Responses

**`200`** — The requested member. Returns `MemberResponse`.

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | `string` | Yes |  |
| `role` | `"owner" \| "admin" \| "member"` | Yes |  |
| `name` | `string` | Yes |  |
| `email` | `string \| null` | Yes |  |
| `avatar_url` | `string \| null` | Yes |  |
| `accent_hue` | `"red" \| "coral" \| "orange" \| "green" \| "teal" \| "blue" \| ...` | Yes | The member's stored monogram key; `null` means the tile derives its colour from the hash. Distinct from the user profile's accent_hue, which only seeds this at workspace creation. |
| `linked_user_id` | `string \| null` | Yes |  |
| `linked_at` | `string \| null` | Yes |  |
| `archived_at` | `string \| null` | Yes |  |
| `created_at` | `string` | Yes |  |
| `updated_at` | `string` | Yes |  |

**`401`** — No valid Supabase session cookie was present. Returns `ApiErrorEnvelope`.

**`404`** — Caller has no active membership in the workspace (`WORKSPACE_NOT_FOUND`), or the member does not exist in this workspace (`MEMBER_NOT_FOUND`). Both 404 envelopes collapse cross-tenant existence leaks. Returns `ApiErrorEnvelope`.

**`422`** — Path param failed UUID validation (`INVALID_PARAMS`). Returns `ApiErrorEnvelope`.

**`429`** — Rate limit exceeded. The body's `error.code` is `RATE_LIMITED` and `error.details.retry_after` is the same number of seconds as the `Retry-After` header. Returns `ApiErrorEnvelope`.
