---
title: "Api Accounts Retrieve"
method: GET
path: "/api/accounts/{email}/"
tags: ["users"]
---

# Api Accounts Retrieve

`GET /api/accounts/{email}/`

GET/PATCH/DELETE /api/accounts/{email}/

Retrieve, update, or delete a single platform account by email.
Requires superadmin access (JWT or API key).

GET: Retrieve account details with full organization info
PATCH: Update account fields (password, is_active, first_name, last_name)
DELETE: Delete account and optionally their organization

Query params for DELETE:
- is_delete_organization (bool): Whether to delete the organization (default: true)

## Path parameters

- `email` string, required

## Headers

- `Authorization` string, required

## Response `200`

- PlatformAccountDetail — For retrieve operations - detailed account info with lightweight organization. Used by GET /api/accounts/{email}/
  - `id` integer, required
  - `email` string, required
  - `name` string
  - `username` string
  - `first_name` string
  - `last_name` string
  - `is_active` boolean
  - `created_at` string, date-time
  - `last_login` string, date-time, nullable
  - `organization` PlatformAccountOrganization, required — Lightweight organization serializer for account detail view. Only includes essential fields - NOT the full OrganizationSerializer.
    - `id` integer, required
    - `name` string, required
    - `unique_organization_id` string
    - `status` 'active' | 'deleting' | 'inactive' — * `active` - Active * `deleting` - Deleting * `inactive` - Inactive

---

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