---
title: "Batch Create Account Lists"
method: POST
path: "/v1/account-lists"
tags: ["accounts"]
---

# Batch Create Account Lists

`POST /v1/account-lists`

Create account lists in batch (up to 100 items per request).

Unlike single-resource `POST` endpoints, the body wraps the payloads in
`items` and the response reports a per-item status.

Requires the `account_lists:write` scope on the API key.

## Request body

- CreateAccountListsInput
  - `items` AccountListInput[], required — Account lists to create.
    - `name` string, required — Name of the list.

## Response `200`

Successful Response

- BatchResponseAccountListOutput
  - `items` BatchItemResultAccountListOutput[], required
    - `index` integer, required
    - `status` 'CREATED' | 'UPDATED' | 'FAILED', required
    - `resource` AccountListOutput
      - `id` string, uuid, required — Unique identifier.
      - `name` string, required — Name of the list.
      - `entries_count` integer, required — Current number of entries in the list.
      - `created_at` string, date-time, required — When the list was created.
      - `updated_at` string, date-time, required — When the list last changed.
    - `error` BatchItemError
      - `type` string, required
      - `message` string, required
  - `summary` BatchSummary, required
    - `total` integer, required
    - `succeeded` integer, required
    - `failed` integer, required

---

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