---
title: "List account members"
method: GET
path: "/api/v1/members"
tags: ["members"]
---

# List account members

`GET /api/v1/members`

Returns everyone with access to this account. The owner is always the first entry and has `role: "owner"` with a `null` id — the owner is the account's own email address, not a revocable membership. Invited people appear with `role: "member"` and are `pending` until they accept.

## Headers

- `Authorization` string, required

## Response `200`

Everyone with access to the account.

- MembersListMembersResponse200
  - `members` AccountMember[], required
    - `id` string, nullable, required — The membership id, used to remove the member. Always `null` for the owner, who is the account's own email address and cannot be removed.
    - `email` string, email, required
    - `role` 'owner' | 'member', required
    - `status` 'pending' | 'active', required — `pending` until the invitation is accepted. A pending member has no API key and no access. The owner is always `active`.
    - `invitedByEmail` string, email, nullable — Who sent the invitation. Null for the owner.
    - `invitedAt` string, date-time, nullable
    - `acceptedAt` string, date-time, nullable — When the invitation was accepted, or null while pending.
    - `lastActiveAt` string, date-time, nullable — When this member's API key was last used, or null if never used.

## Other responses

- `401` — Missing or invalid API key.

---

[API](https://skmtc.net/getdial/apis/rest-api.md) · [All operations](https://skmtc.net/getdial/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getdial/rest-api/versions/cfa621230237/schema)
