---
title: "Retrieve a member"
method: GET
path: "/v1/members/{id}"
---

# Retrieve a member

`GET /v1/members/{id}`

Retrieves a single member by their ID.

**[Required scope](/using-the-api/scopes/):** `members:read`

**[Rate limit category](/using-the-api/rate-limits/):** Read

## Path parameters

- `id` string, required — Unique identifier of the member to retrieve.

## Headers

- `Lightfield-Version` '2026-03-01', required

## Response `200`

OK

- MemberRetrieveResponse
  - `id` string, required — Unique identifier for the member.
  - `createdAt` string, required — ISO 8601 timestamp of when the member was created.
  - `updatedAt` string, nullable, required — ISO 8601 timestamp of when the member was last updated, or null.
  - `httpLink` string, nullable, required — URL to view the member in the Lightfield web app, or null.
  - `fields` object, required — Map of field names to their typed values.
    - `$email` object, required — The member's email address.
      - `value` string, required — The field value.
      - `valueType` 'EMAIL', required — The data type of the field value.
    - `$name` object, required — The member's full name.
      - `value` FullName, required
        - `firstName` string, nullable — The contact's first name.
        - `lastName` string, nullable — The contact's last name.
      - `valueType` 'FULL_NAME', required — The data type of the field value.
    - `$profileImage` object, required — URL of the member's profile image, or null if unset.
      - `value` string, nullable, required — The field value, or null if unset.
      - `valueType` 'URL', required — The data type of the field value.
    - `$role` object, required — The member's workspace role.
      - `value` string, required — The field value.
      - `valueType` 'TEXT', required — The data type of the field value.
  - `relationships` object, required — Map of relationship names to their associated entities.
    - `$user` object, required — The underlying user record for this workspace member.
      - `cardinality` 'HAS_ONE', required — Whether the relationship is has_one or has_many.
      - `objectType` 'user', required — The type of the related object.
      - `values` string[], required — IDs of the related users.

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `415` — 415
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503
- `504` — 504

## Changes

> 19 revisions in range; 1 could not be searched.

- **2026-05-21** `7b3cf2deef52` — 1 info
  - added the non-success response with the status `504`
- **2026-04-17** `9e026e8daea4` — 1 breaking, 7 info
  - removed 'propertyNames' constraint from the `fields` response property for the status `200`
  - the endpoint scheme security `bearerAuth2` was removed from the API
  - added the required property `fields/$email` to the response with the `200` status
  - added the required property `fields/$name` to the response with the `200` status
  - …4 more
- **2026-03-20** `3132b53a9a6f` — 1 breaking, 14 warning
  - the `fields/additionalProperties/valueType` response's property type/format changed from `string`/`` to ``/`` for status `200`
  - added the new `ADDRESS` enum value to the `fields/additionalProperties/valueType` response property for the response status `200`
  - added the new `CHECKBOX` enum value to the `fields/additionalProperties/valueType` response property for the response status `200`
  - added the new `CURRENCY` enum value to the `fields/additionalProperties/valueType` response property for the response status `200`
  - …11 more
- **2026-03-19** `042cf0ea6edd` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/lightfld/apis/api-reference/changes/v1/members/:id/get.md)

---

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